नेवला 3.6 में गहरी आबादी जोड़ी गई। https://github.com/LearnBoost/mongoose/issues/1377#issuecomment -15911192
आपके उदाहरण के लिए, यह कुछ इस तरह होगा:
Owner.find().populate('shelves').exec(PopulateBooks);
function PopulateBooks(err, owners) {
if(err) throw err;
// Deep population is here
Book.populate(owners, { path: 'shelves.books' }).exec(callback);
}