MongoDB指南针过滤器(查询)

时间:2019-07-15 13:00:40

标签: mongodb mongodb-query mongodb-compass

enter image description here

在mongoDB指南针中,使用以下过滤器没有结果。不知道我在做什么错。

  1. {user: {uid: 'ttorone'}}
  2. {user: {_id: ObjectId("5b9fc9567a1f050026a8bbda")}}

我想要过滤掉此文档(其中user-> uid为'ttorone')。用户也是这里的对象。

1 个答案:

答案 0 :(得分:1)

尝试这样的{“ user.uid”:“ ttorone”}

例如,如果我要获取“ imbd.id”等于1的所有电影文档,则将以下过滤器放在指南针中,请参见下图。您的情况与此类似。您正在嵌入式对象中搜索属性值。

enter image description here