我跟随MongoDB收集了以下内容:
{ "results": [
{
"isExist": true,
"isJourneyEnd": true,
"objectId": "9WtZcxWttk",
"sentTo": [
"JeLRe4yH9R"
],
},
{
"isExist": false,
"isJourneyEnd": true,
"objectId": "9WtZcxWtul",
"sentTo": [
"JeLRe4y9HU"
],
}
]}
实际上,这个集合中有很多条目,我刚刚提到了两个。
如果我想为以下语句编写查询:
“ isExist 的数组的打印元素为真”。
我想对此有一些指导,因为我是MongoDB的新手。
答案 0 :(得分:0)
试试这个:
db.collection.find({isExist: true});