Можете изрично да посочите само задължителните параметри на метода за попълване:
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
})