标签: neo4j cypher
cypher1:start n=node(1,2,3),n1=node(1,2,3) match n-[r]-n1 return n,n1;
start n=node(1,2,3),n1=node(1,2,3) match n-[r]-n1 return n,n1;
cypher2:start n=node(1,2,3),n1=node(3,2,1) match n-[r]-n1 return n,n1;
start n=node(1,2,3),n1=node(3,2,1) match n-[r]-n1 return n,n1;
节点2和节点3是链接的,但是cypher1无法获得2和3之间的关系;为什么呢?
答案 0 :(得分:0)
已经有一个错误报告,描述了类似的情况:
https://github.com/neo4j/neo4j/issues/897
如果您有更多示例数据,请随意加入。