我有一个看起来像的图表
a --father_of--> 1 --wife_of--> b --father_of-->2 --wife_of--> c --father_of--> 3--wife_of--> d --father_of --> 5--wife_of-->e
我想写一个查询,它给我树中的所有父亲,从
我可以通过写作达到一个层次
g.V('name','a').out(father_of).out(wife_of)
这给了 b
如何编写一个递归查询,将 b 作为管道的输入,以便查询给我节点 b、c、d 和 e。