我有来自此集合的users
集合我需要获取所有匹配的文档,这些文档包含name
字段,其值为null
或不包含name
}字段。我尝试了几种方法,但没有得到预期的输出。
查询:
Users.objects(__raw__={ 'name': null })
这给了我一个错误NameError: name 'null' is not defined
知道如何获取包含值为name
的{{1}}字段或不包含null
字段的所有匹配文档?提前谢谢。
答案 0 :(得分:0)
我找到了正确的查询来获取所有匹配的文档,这些文档包含name
字段,其值为null
或不包含name
字段。
<强>查询强>
Users.objects(name=None)