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

Make $elemMatch (proiezione) restituisce tutti gli oggetti che corrispondono ai criteri

Per restituire più documenti secondari, dovrai usare il framework di aggregazione. Questo restituirà tutti i documenti secondari che stai cercando:

db.zip.aggregate(
  {$match: {zipcode: 63109}},
  {$unwind: "$students"},
  {$match: {"students.school": 102}}
)

Puoi fare varie cose per ottenere un output diverso, ma questo restituirà:

{
    "result" : [
        {
            "_id" : 1,
            "zipcode" : 63109,
            "students" : {
                "name" : "john",
                "school" : 102,
                "age" : 10
            }
        },
        {
            "_id" : 1,
            "zipcode" : 63109,
            "students" : {
                "name" : "jess",
                "school" : 102,
                "age" : 11
            }
        },
        {
            "_id" : 4,
            "zipcode" : 63109,
            "students" : {
                "name" : "barney",
                "school" : 102,
                "age" : 7
            }
        }
    ],
    "ok" : 1
}