Предположим, что в моей коллекции есть следующие документы:
{
"_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"}
]
}
Как я могу это сделать?