我正在使用 Cosmos DB - Graph 来存储数据并开发 API 来查询图形数据库并以以下格式返回查询结果。API 可以接受任何节点类型和 id 作为参数并遍历 in & out 边以返回嵌套的顶点和边。
{
"nodes":[
{"id":"1","name":"A"},
{"id":"2","name":"B"},
{"id":"3","name":"C1"},
{"id":"4","name":"C2"},
{"id":"5","name":"C3"},
{"id":"6","name":"D1"},
{"id":"7","name":"D2"},
{"id":"8","name":"D3"}
],
"edges":[
{"source":"1","target":"2"},
{"source":"2","target":"3"},
{"source":"2","target":"4"},
{"source":"2","target":"5"},
{"source":"3","target":"6"},
{"source":"4","target":"7"},
{"source":"5","target":"8"}
]
}
示例图:
我是 gremlin 图形查询的新手,并且面临遍历图形的问题。我有几个样本可以进出边缘并寻找顶点查询。我计划执行 4 个查询来生成上述格式:
对于边缘
g.V().has('name', 'A').repeat(__.bothE().where(without('e')).store('e').otherV()).cap('e')
g.V().has('name', 'A').repeat(__.inE().where(without('e')).store('e').outV()).cap('e')
对于节点
g.V().has('name', 'A').repeat(out()).until(outE().count().is(0)).simplePath()
我尝试了几个示例查询,但无法全部输入和输出顶点。我正在寻找返回所有顶点的查询或任何更好的解决方案来减少查询以构建 JSON 格式的输出。