Gremlin Python:在列表中返回顶点ID和边属性

时间:2018-07-18 18:47:36

标签: python graph gremlin amazon-neptune

我很难返回想要的确切信息。本质上,我想返回某种类型的所有边缘(沿任一方向)。我想在列表中获取顶点ID和edge参数。理想情况下,我的输出格式如下:

{
    "from": "vertex_id_1",
    "to": "vertex_id_2",
    "similarity": 0.45
}

我一直在使用g.both().vertexMap().toList()来获取相似性,但是我无法以这种方式获取顶点ID。

1 个答案:

答案 0 :(得分:3)

以玩具图为例,最好使用project()

gremlin> g.V().bothE('knows').
......1>   project('from','to','weight').
......2>     by(outV().id()).
......3>     by(inV().id()).
......4>     by('weight')
==>[from:1,to:2,weight:0.5]
==>[from:1,to:4,weight:1.0]
==>[from:1,to:2,weight:0.5]
==>[from:1,to:4,weight:1.0]