mongodb - 查询&从嵌套数组中投射元素值

时间:2017-09-11 19:57:58

标签: mongodb python-2.7 pymongo

我的一个集合中有一个嵌套数组,如下所示

enter image description here

如何从特定子阵列中检索值&我不需要该文档中的任何其他字段。 我尝试使用以下查询,但它没有得到我预期的输出,

查询:

db.getCollection('my_collection').find({"_id":"08d4608a-e6c4-1bd8-80e6-8d1ac448c34b"},{"_id":0,"customProperties.0.1":1})

1 个答案:

答案 0 :(得分:0)

你可以尝试

db.getCollection.find({
    "someArray.someNestedArray.name": "value"
})