MongoDB
 sql >> Base de Dados >  >> NoSQL >> MongoDB

Equivalente ao shell mongo db.collection.runCommand() em Node.js


Eu encontrei isso como um equivalente:
collection.find({ $text: { $search : "your search words" }})
  .toArray(function(err,results) {
    // ..callback stuff..
});