14
MongoDB संग्रह में ऑब्जेक्ट सरणी में केवल queried तत्व प्राप्त करें
मान लीजिए मेरे संग्रह में आपके पास निम्नलिखित दस्तावेज हैं: { "_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}) लौटे …