这真是帮了我大忙。How to increase performance of shortest path using Gremlin?
我想知道如何将这个gremlin查询转换为gremlin-python
g.V(687).store('x').repeat(out().where(without('x')).aggregate('x')).until(hasId(1343)).limit(1).path()比如..。
g.V(687).store('x').repeat(__.out().where(without('x')).aggregate('x')).until(__.hasId(1343)).limit(1).path()发布于 2021-01-08 19:56:17
您应该能够在Python代码中使用P.without。
https://stackoverflow.com/questions/65625828
复制相似问题