आप स्पष्ट रूप से केवल पॉप्युलेट विधि के आवश्यक पैरामीटर निर्दिष्ट कर सकते हैं:
WizardModel
.find({})
.populate({path: 'spells', options: { sort: [['damages', 'asc']] }})
http://mongoosejs.com/docs/api.html#document_Document-populate पर एक नज़र डालें, यहां ऊपर दिए गए लिंक से एक उदाहरण दिया गया है।
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
})