MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Mongo Query per recuperare i documenti in base allo stesso valore del campo e quelli che non sono scaduti

La query seguente risolve il problema...$unwind viene utilizzato per dividere l'array in singoli campi in modo che $group funzioni su sharedWith

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 }
    }}
]);