Created
November 30, 2023 16:43
-
-
Save suhailgupta03/bc01761ce952bad9f2365543be6e8724 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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