I have a model Product
with a ref field Grocer
. At some point I have the Product
doc but with the Grocer
field not populated, just the ObjectId. Is there a quick way to populate a doc using mongoose? or I have to extend it somehow?, so from:
// product 'product1'
{
_id: 'ksjdflasdf78aslwk3jk8df9',
name: 'Product 1',
grocer: 'jasf97342jlihwe79834hkjhdkf'
}
I could do something like:
doc.populate('grocer');
Now doc is:
// product 'product1'
{
_id: 'ksjdflasdf78aslwk3jk8df9',
name: 'Product 1',
grocer: {
_id: 'jasf97342jlihwe79834hkjhdkf',
name: 'Johan'
}
}
I'll answer myself instead deleting the question. Mongoose gives the option to populate a doc since v3.6.
Examples:
http://mongoosejs.com/docs/api.html#document_Document-populate