db.MyCollection.aggregate([ {$group : { id: "$myfield" , count : { $sum: 1}}}, {$match : { count : { $gt : 1 } }} ])
db.MyCollection.aggregate([
{$group : { id: "$myfield" , count : { $sum: 1}}},
{$match : { count : { $gt : 1 } }} ])