如何在gremlin中遍历使用startsWith()
?
g.V('6b4e7018-a2d1-45fd-a1ce-78efe4c96c33').bothE(startsWith('live_at_'))
.elementMap().toList()
或
g.V('6b4e7018-a2d1-45fd-a1ce-78efe4c96c33').bothE().hasLabel(startsWith('live_at_'))
.elementMap().toList()
列出所有以live_at_
开头的edges
。
明白了,我们需要用startingWith()
代替startWith()
g.V('6b4e7018-a2d1-45fd-a1ce-78efe4c96c33').outE().hasLabel(startingWith('lives_at_'))
.elementMap().toList()
在Azure版本的Gremlin中,我们以以下方式使用
.has('someattrname', TextP.startingWith('xyz'))