Skip to content

Instantly share code, notes, and snippets.

@dineshsonachalam
Created December 4, 2016 16:56
Show Gist options
  • Save dineshsonachalam/733a4c64ead5d154a417eb87e2906689 to your computer and use it in GitHub Desktop.
Save dineshsonachalam/733a4c64ead5d154a417eb87e2906689 to your computer and use it in GitHub Desktop.
db.post.aggregate([
{
$lookup:
{
from: "like",
localField: "post_id",
foreignField: "post_id",
as: "post_like_collection"
}
},
{
$lookup:
{
from: "comment",
localField: "post_id",
foreignField: "post_id",
as: "post_comment_collection"
}
}
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment