Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可以在特定字段中获取所有值为 null 的三元组吗?所有 date_of_birth 的人都等于 null?
[ "type": "/people/person", "date_of_birth":null, "name":null ]
您需要使用“可选”:“禁止”指令:
[{ "type": "/people/person", "date_of_birth": { "value": null, "optional": "forbidden" }, "name": null, "id": null }]
(我添加"id":null以便查询编辑器提供可点击的链接)
"id":null
请注意,如果您想要更多结果,则查询具有默认值"limit":100,,然后添加显式限制子句。如果超时,那么您将需要使用MQL 游标。
"limit":100,
如果您需要处理大量结果,未记录的信封参数“page”比“cursor”提供了更大的灵活性,允许您随意前进、后退或访问页面,而不是像使用光标。
"optional": "forbidden" 子句是许多有用查询的关键。"!everything" == "nothing" 等价物只是最常见的等价物之一。
汤姆