Skip to content

Instantly share code, notes, and snippets.

@nurfarazi
Created August 27, 2018 09:49
Show Gist options
  • Save nurfarazi/90252cb1e981a82acdc5f9373da2de60 to your computer and use it in GitHub Desktop.
Save nurfarazi/90252cb1e981a82acdc5f9373da2de60 to your computer and use it in GitHub Desktop.
db.usersProject.aggregate([
{
"$group": {
_id: {projectId: "$projectId"},
dups: { $addToSet: "$_id" } ,
count: { $sum : 1 }
}
},
{
"$match": {
count: { "$gt": 1 }
}
}
]).forEach(function(doc) {
doc.dups.shift();
db.usersProject.remove({
_id: {$in: doc.dups}
});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment