我的密码看起来像这样:
START source=node(16822), target=node(12449)
MATCH p = allShortestPaths(source-[*]-target)
return p
我想为此编写等效的 C# 代码。这是我到现在为止的
var query = client.Cypher
.Start(new { source = sourceNode.Reference, target = targetNode.Reference })
.Match("p = allShortestPaths(source-[*]-target)")
.Return<Node<Data>>("x");
其中 Data 是具有字符串属性(字符串 ID)的类。
我应该用什么代替 x 以获得我的结果作为包含路径的连接 ID 列表。