Skip to content

Instantly share code, notes, and snippets.

@gartenfeld
Last active August 29, 2015 14:10
Show Gist options
  • Save gartenfeld/0145c1ce7dee0c7c065a to your computer and use it in GitHub Desktop.
Save gartenfeld/0145c1ce7dee0c7c065a to your computer and use it in GitHub Desktop.
var results = db.sanat.aggregate([
{ $group:
{
_id: {
headword : "$headword",
senses : "$senses"
},
uniqueIds: { $addToSet: "$_id" },
count: { $sum: 1 }
}
},
{ $match:
{ count: { $gt: 1 } }
}
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment