U kunt expliciet alleen de vereiste parameters van de vulmethode specificeren:
WizardModel
.find({})
.populate({path: 'spells', options: { sort: [['damages', 'asc']] }})
Kijk eens op http://mongoosejs.com/docs/api.html#document_Document-populateHier is een voorbeeld van een link hierboven.
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
})