MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Entspricht der Mongo-Shell db.collection.runCommand() in Node.js

Ich habe das als Äquivalent gefunden:

collection.find({ $text: { $search : "your search words" }})
  .toArray(function(err,results) {
    // ..callback stuff..
});