नीचे दी गई क्वेरी समस्या का समाधान करती है...$अनविंड का उपयोग सरणी को अलग-अलग क्षेत्रों में विभाजित करने के लिए किया जाता है ताकि $group साझाविथ पर काम करे
db.getCollection('sharing').aggregate([
{
$match: { "expiryTime":{"$gte": ISODate()} }
},
{ $unwind: "$sharedWith"},
{ $group: {
// Group by fields to match on sharedWith
_id: "$sharedWith",
// Count number of matching docs for the group
count: { $sum: 1 },
// Save the _id for matching docs
docs: { $push: "$_id" }
}},
// Limit results to duplicates (more than 1 match)
{ $match: {
count: { $gt : 1 }
}}
]);