Припустимо, у моїй колекції є такі документи:
{
"_id":ObjectId("562e7c594c12942f08fe4192"),
"shapes":[
{
"shape":"square",
"color":"blue"
},
{
"shape":"circle",
"color":"red"
}
]
},
{
"_id":ObjectId("562e7c594c12942f08fe4193"),
"shapes":[
{
"shape":"square",
"color":"black"
},
{
"shape":"circle",
"color":"green"
}
]
}
Зробіть запит:
db.test.find({"shapes.color": "red"}, {"shapes.color": 1})
Або
db.test.find({shapes: {"$elemMatch": {color: "red"}}}, {"shapes.color": 1})
Повертає збіглий документ (документ 1) , але завжди з ВСІМ елементами масиву в shapes
:
{ "shapes":
[
{"shape": "square", "color": "blue"},
{"shape": "circle", "color": "red"}
]
}
Однак я хотів би отримати документ (Документ 1) лише з масиву, який містить color=red
:
{ "shapes":
[
{"shape": "circle", "color": "red"}
]
}
Як я можу це зробити?