Skip to content

Instantly share code, notes, and snippets.

@matheusdavidson
Created August 26, 2015 18:39
Show Gist options
  • Save matheusdavidson/2b09fbcf6f07026dcbd7 to your computer and use it in GitHub Desktop.
Save matheusdavidson/2b09fbcf6f07026dcbd7 to your computer and use it in GitHub Desktop.
// Controller
Insc.findById('55db841e16f87bd00bfec6df').populate('orderInsc.items.insc').exec(function(err, insc){
console.log('insc', insc);
});
// Models
var InscSchema = new Schema({
orderInsc: {
type: Schema.Types.ObjectId,
ref: 'Order'
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment