标签: gremlin
除非另有说明,否则深度优先策略是Gremlin中的默认策略。如何指定广度优先策略?
gremlin语言如下:
g.V().repeat(_,in('edgelabel').simplePath()).times(3).path()
答案 0 :(得分:1)
当前,当使用重复时,它默认为BFS,这很不幸,因为所有其他OLTP查询都是DFS。有一张门票可以解决这个问题:https://github.com/apache/tinkerpop/pull/838