我可以使用以下命令获取图形的路径,
g.V('v6')。repeat(out()。simplePath())。until(hasId('v8'))。path()。limit(1)
给予
==>[v[v6], v[v3], v[v1], v[v4], v[v8]]
我想打印与路径相关的边缘。尝试了几种方法使其无法打印。
答案 0 :(得分:0)
通过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]]