Skip to content

Instantly share code, notes, and snippets.

@colus001
Created December 10, 2019 03:36
Show Gist options
  • Save colus001/50ade385f082aef8ce63a416ad6b81f0 to your computer and use it in GitHub Desktop.
Save colus001/50ade385f082aef8ce63a416ad6b81f0 to your computer and use it in GitHub Desktop.
db.getCollection('summoners').aggregate([
{
$group: {
_id: { name: '$name' },
uniques: { $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