没有步骤转换为 gremlin python
without step translate to gremlin python
这对我很有帮助。
我想知道如何将此 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()
您应该可以在 Python 代码中使用 P.without
。
这对我很有帮助。
我想知道如何将此 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()
您应该可以在 Python 代码中使用 P.without
。