在 gremlin 中是否可以将顶点 ID 存储在另一个顶点中?例如,如果我创建了这样的顶点
g.
addV('my_vertex_label').property(id,'my_vertex_id').
property('anotherVertexID','other_vertex_id')
然后查询它
V('my_vertex_id').properties('anotherVertexID').value()
它会回来
["other_vertex_id"]
无论如何我可以像这样查询另一个顶点:
V(V('my_vertex_id').properties('anotherVertexID').value())
请注意,我正在使用AWS Neptune
所以查询必须是纯 gremlin 没有 java/groovy