Anda dapat secara eksplisit menentukan hanya parameter yang diperlukan dari metode pengisian:
WizardModel
.find({})
.populate({path: 'spells', options: { sort: [['damages', 'asc']] }})
Lihat http://mongoosejs.com/docs/api.html#document_Document-populateBerikut adalah contoh dari tautan di atas.
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
})