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

Wie frage ich unterschiedliche Werte in Mongoose ab?

Nur um ein Update für Mongoose 3.x zu geben:

MyModel.find().distinct('_id', function(error, ids) {
    // ids is an array of all ObjectIds
});