我试图找到顶点,除了一些特定的顶点,下面的查询不起作用:
g.V()
.has('someId')
.except([g.V().has('someId').has('some_other_filter')])
这是'except'的用法,我在其中提供的查询不正确吗?
由于
答案 0 :(得分:1)
g.V()
.has('someId')
.except(g.V().has('someId').has('some_other_filter').toList())
没有将except
中的内容转储到列表中,实际上只是将管道传递给except
,它不会将顶点评估为真。