Skip to content

Instantly share code, notes, and snippets.

@gharriso
Created December 15, 2017 02:53
Show Gist options
  • Save gharriso/9f52ab344d8a943e30db6a5eb43b8932 to your computer and use it in GitHub Desktop.
Save gharriso/9f52ab344d8a943e30db6a5eb43b8932 to your computer and use it in GitHub Desktop.
db.Sakila_films.aggregate([
{ $unwind: "$Actors" },
{ $lookup:
{ from: "Sakila_actors",
localField: "Actors.actorId",
foreignField: "actorId",
as: "actors"
}
},
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment