标签: apache gremlin tinkerpop
我正试图提出一个gremlin查询,以查找谁是雇员并且知道“杰克”。我对路径和边缘也很感兴趣,以了解他们为什么彼此认识
这里代表它
这是我提出的查询,但是没有优势。
g.V().has('isSSEmployee',true).repeat(both().simplePath()).until(has('name','Jack')).path().limit(10)
答案 0 :(得分:0)
要在路径结果中返回边,您需要在查询中专门引用它们。像这样:
1
希望有帮助。 开尔文