打印与路径关联的边缘
Print Edges associated with the path
我能够使用下面的命令获取图形的路径,
g.V('v6').repeat(out().simplePath()).until(hasId('v8')).path().limit(1)
给予,
==>[v[v6], v[v3], v[v1], v[v4], v[v8]]
我想打印与路径关联的边缘。试了几种方法都打印不出来
通过outE().inV()解决了
g.V('v6').repeat(outE().inV().simplePath()).until(hasId('v8')).path().limit(1)
给出顶点及其边,
[v[v6], e[es63][v6-sonof->v3], v[v3],
e[esb34][v3-siblingof->v4], v[v4],
e[es48][v4-daughterof->v8], v[v8]]
我能够使用下面的命令获取图形的路径,
g.V('v6').repeat(out().simplePath()).until(hasId('v8')).path().limit(1)
给予,
==>[v[v6], v[v3], v[v1], v[v4], v[v8]]
我想打印与路径关联的边缘。试了几种方法都打印不出来
通过outE().inV()解决了
g.V('v6').repeat(outE().inV().simplePath()).until(hasId('v8')).path().limit(1)
给出顶点及其边,
[v[v6], e[es63][v6-sonof->v3], v[v3],
e[esb34][v3-siblingof->v4], v[v4],
e[es48][v4-daughterof->v8], v[v8]]