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

Mongoose, sortiere Abfrage nach ausgefülltem Feld

Sie können nur die erforderlichen Parameter der Populate-Methode explizit angeben:

WizardModel
  .find({})
  .populate({path: 'spells', options: { sort: [['damages', 'asc']] }})

Sehen Sie sich http://mongoosejs.com/docs/api.html#document_Document-populateHier ist ein Beispiel von einem Link oben.

doc
.populate('company')
.populate({
  path: 'notes',
  match: /airline/,
  select: 'text',
  model: 'modelName'
  options: opts
}, function (err, user) {
  assert(doc._id == user._id) // the document itself is passed
})