In JanusGraph I have 4 nodes.
A(name=alice) -> B
B -> C
C -> D
D -> A
I want to get all the cycles from node A.
g.V().has('name', 'alice').both().both().cyclicPath().path().by('name')
我可以得到 A->B->A 和 A->D->A。但我无法得到 A->B->C->D->A。我想获得从顶点 A 到顶点 A 的所有路径。如何使用 groovy 语言获得它?