MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Mongo-Abfrage zum Abrufen von Dokumenten auf der Grundlage des gleichen Feldwerts und solcher, die nicht abgelaufen sind

Die folgende Abfrage löst das Problem ... $unwind wird verwendet, um ein Array in einzelne Felder aufzuteilen, sodass $group auf sharedWith

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