マングース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);
}