作者:px9ctrl | 来源:互联网 | 2023-01-13 20:38
假设我vertices
与label
reviewer
和在一起property
name
。
我可以使用以下查询“ John Smith”:
g.V().hasLabel('reviewer').has('name', eq('John Smith'))
但是我无法使用以下查询空“名称”:
g.V().hasLabel('reviewer').has('name', eq(null))
尽管有评论者的null
姓名(即未设置reviewer
属性name
),但以上内容对我来说还是空的。
那么什么是gremlin查询来查找具有null
属性的顶点呢?
1> stephen mall..:
我想知道您是否可能在不同的Graph
实现上得到不同的行为,但是在TinkerGraph上可以做到:
gremlin> g.V().hasLabel('reviewer').hasNot('name')
==>v[0]