Koleksiyonumda aşağıdaki belgelerin bulunduğunu varsayalım:
{
"_id":ObjectId("562e7c594c12942f08fe4192"),
"shapes":[
{
"shape":"square",
"color":"blue"
},
{
"shape":"circle",
"color":"red"
}
]
},
{
"_id":ObjectId("562e7c594c12942f08fe4193"),
"shapes":[
{
"shape":"square",
"color":"black"
},
{
"shape":"circle",
"color":"green"
}
]
}
Sorgu yap:
db.test.find({"shapes.color": "red"}, {"shapes.color": 1})
Veya
db.test.find({shapes: {"$elemMatch": {color: "red"}}}, {"shapes.color": 1})
Eşleşen belgeyi (Belge 1) , ancak her zaman şu TÜM dizi öğeleriyle döndürür shapes
:
{ "shapes":
[
{"shape": "square", "color": "blue"},
{"shape": "circle", "color": "red"}
]
}
Ancak, belgeyi (Belge 1) yalnızca aşağıdakileri içeren diziyle almak istiyorum color=red
:
{ "shapes":
[
{"shape": "circle", "color": "red"}
]
}
Bunu nasıl yapabilirim?