Gremlin-Python:将遍历从边切换为顶点

时间:2018-11-14 12:45:26

标签: gremlin tinkerpop

我要执行centrality calculation

g.V().repeat(groupCount('m').by('name').out()).times(5).cap('m')

仅使用边缘的子集:

g.E().has('some-property', 'some-value')

不幸的是,在gremlin-python中的.subgraph() step returns a dict,所以我不能用它来执行进一步的遍历。

还有另一种方法可以将边沿遍历与顶点遍历相结合?

1 个答案:

答案 0 :(得分:1)

只需对边缘应用一些滤镜:

g.V().
  repeat(groupCount('m').
           by('name').
         outE().has(....).inV()).
    times(5).
  cap('m')