如何在mongo中查询嵌套文档

时间:2014-04-08 13:46:12

标签: mongodb mongovue

我的文档结构如下

  "options" : {
    "fruit" : {
      "is" : false,
    }
    "vegetable" :{
     "is":true,
    }
  }

我想拿起所有只有蔬菜的篮子物品

我试过

{"options.vegetable.is":"true"} //not working
{"options":"vegetable"} // not working

我正在使用MongoVUE并尝试使用$ eleMatch但仍然会出现语法错误..

0 个答案:

没有答案