Skip to content

Instantly share code, notes, and snippets.

@danared
Created March 27, 2015 18:55
Show Gist options
  • Save danared/7aaea86d97df6b3069b6 to your computer and use it in GitHub Desktop.
Save danared/7aaea86d97df6b3069b6 to your computer and use it in GitHub Desktop.
Band.
findOne({ name: "Guns N' Roses" }).
populate('lead').
exec(function(err, band) {
console.log(band.lead.name); // "Axl Rose"
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment