我想用“所有”传出关系遍历所有节点。 但我发现的所有例子都只使用方向与关系类型相结合。
{...
"relationships" : [ {
"direction" : "all",
"type" : "knows"
}, {
"direction" : "all",
"type" : "loves"
} ]
...
}
我仍然尝试使用"relationships" : "out"
,但是我收到错误500“无法将String转换为Map”。
仅给出带方向的数组不起作用并抛出错误500“type not not null”。
是否可以不指定方向“out”的所有类型的关系?
答案 0 :(得分:0)
目前似乎不可能。这绝对是未来版本中添加的东西!与此同时,您可以编写自己的插件来执行此操作,例如:http://docs.neo4j.org/chunked/stable/server-plugins.html
答案 1 :(得分:0)
为此创建了一张票,请参阅https://github.com/neo4j/community/issues/6
这是对的吗?