Skip to content

Instantly share code, notes, and snippets.

@suhailgupta03
Created November 30, 2023 16:43
Show Gist options
  • Save suhailgupta03/bc01761ce952bad9f2365543be6e8724 to your computer and use it in GitHub Desktop.
Save suhailgupta03/bc01761ce952bad9f2365543be6e8724 to your computer and use it in GitHub Desktop.
db.collection.aggregate([
{ $unwind: "$id" },
{ $group: {
_id: "$id",
titles: { $push: "$title" }
}},
{ $group: {
_id: null,
distinctDocuments: { $push: { id: "$_id", title: { $first: "$titles" } } }
}},
{ $project: {
_id: 0,
distinctDocuments: 1
}}
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment