Załóżmy, że masz w mojej kolekcji następujące dokumenty:
{
"_id":ObjectId("562e7c594c12942f08fe4192"),
"shapes":[
{
"shape":"square",
"color":"blue"
},
{
"shape":"circle",
"color":"red"
}
]
},
{
"_id":ObjectId("562e7c594c12942f08fe4193"),
"shapes":[
{
"shape":"square",
"color":"black"
},
{
"shape":"circle",
"color":"green"
}
]
}
Wykonaj zapytanie:
db.test.find({"shapes.color": "red"}, {"shapes.color": 1})
Lub
db.test.find({shapes: {"$elemMatch": {color: "red"}}}, {"shapes.color": 1})
Zwraca dopasowany dokument (Dokument 1) , ale zawsze ze WSZYSTKIMMI elementami tablicy w shapes
:
{ "shapes":
[
{"shape": "square", "color": "blue"},
{"shape": "circle", "color": "red"}
]
}
Chciałbym jednak uzyskać dokument (Dokument 1) tylko z tablicą zawierającą color=red
:
{ "shapes":
[
{"shape": "circle", "color": "red"}
]
}
W jaki sposób mogę to zrobić?