gpt4 book ai didi

Gremlin - 如何查找具有 'null' 属性的顶点?

转载 作者:行者123 更新时间:2023-12-02 17:08:39 25 4
gpt4 key购买 nike

假设我有 顶点,带有 label reviewer属性 名称

我可以通过以下方式查询“John Smith”:

g.V().hasLabel('reviewer').has('name', eq('John Smith'))

但是我无法使用以下方式查询 null 'name':

g.V().hasLabel('reviewer').has('name', eq(null))

尽管评论者姓名为 null(即 reviewer 属性为 name未设置)。

那么查找具有 null 属性的顶点的 gremlin 查询是什么?

最佳答案

我想知道您是否可能在不同的 Graph 实现上得到不同的行为,但在 TinkerGraph 上您可以这样做:

gremlin> g.V().hasLabel('reviewer').hasNot('name')
==>v[0]

关于Gremlin - 如何查找具有 'null' 属性的顶点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46641026/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com