Gremlin'除'用法似乎不起作用

时间:2013-12-12 12:35:16

标签: gremlin titan

我试图找到顶点,除了一些特定的顶点,下面的查询不起作用:

 g.V()
.has('someId')
.except([g.V().has('someId').has('some_other_filter')])

这是'except'的用法,我在其中提供的查询不正确吗?

由于

1 个答案:

答案 0 :(得分:1)

您需要iterate your pipe

g.V()
.has('someId')
.except(g.V().has('someId').has('some_other_filter').toList())

没有将except中的内容转储到列表中,实际上只是将管道传递给except,它不会将顶点评估为真。