如何遍历使用' startsWith() '在gremlin?



如何在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'))

相关内容

  • 没有找到相关文章

最新更新