Guest User

Untitled

a guest
Dec 10th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. Locations.aggregate([
  2. { "$match": { "name": "development" } },
  3. {
  4. "$lookup": {
  5. "from": "users",
  6. "localField": "followers",
  7. "foreignField": "_id",
  8. "as": "followers"
  9. }
  10. }
  11. ])
  12.  
  13. Locations.find( ...aggregation goes here )
Add Comment
Please, Sign In to add comment