मान लीजिए मेरे संग्रह में आपके पास निम्नलिखित दस्तावेज हैं:
{
"_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"}
]
}
मैं यह कैसे कर सकता हूँ?