AWS Neptune 查找连接到特定顶点的所有顶点的 ID

AWS Neptune find id of all the vertices connected to a particular vertice

我正在尝试获取连接到特定顶点的所有顶点的 ID。其中 id 不是 "id" 属性,而是节点的 id (T.id)

g.V().has(T.id, "id1").both("is")
==>v[id2]
==>v[id3]
==>v[id4]

但是当我试图只获取顶点的 ID 时,我什么也没有。

g.V().has(T.id, "id1").both("is").values("id")
g.V().has(T.id, "id1").both("is").id

我想要的是下面这样的东西:

==>id2
==>id3
==>id4

如果我没理解错的话, 你可以使用这个:

g.V("id1").both("is").id()

无论如何,如果你想获得 id,你可以使用 id() 步骤