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

Nur Filialdokument abfragen und übereinstimmendes Filialdokument zurückgeben

$in in der Suchabfrage wurde entwickelt, um Dokumente statt Unterdokumente zurückzugeben. In Ihrem Fall hat mongoDB das Aggregationsframework bereitgestellt. Dies hilft Ihnen beim Filtern von Unterdokumenten.

Für mongoDB <=3.0.x

db.collection.aggregate(
  { $project: { Brand: 1}},
  { $unwind: '$Brand'},
  { $match: { "Brand.name" : { $in : ["Reebok", "Adidas"]}}},
  { $group: { _id: '$_id', Brand: {$push : '$Brand' }}}
)

MongoDB 3.2-Wege

db.collection.aggregate([
   {
      $project: {
         Brand: {
            $filter: {
               input: "$Brand",
               as: "Brand",
               cond: { "$$Brand.name": { $in : ["Reebok", "Adidas"]}}
            }
         }
      }
   }
])