Guest User

Untitled

a guest
Jan 21st, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. db.movies.aggregate([
  2. {
  3. $match: { _id: 1}
  4. },
  5. {
  6. $lookup: {
  7. from: "actors",
  8. localField: "actors",
  9. foreignField: "_id",
  10. as: "actors"
  11. }
  12. }
  13. ]).pretty();
Add Comment
Please, Sign In to add comment