我认为这是一个简单的问题,但我无法找到答案。我尝试了各种方法来使用密码删除 neo4j 1.6 中的关系,但出现错误。
start n = node(1) match n-[r:KNOWS]-m delete r;
我想删除所有类型为 KNOWS 的关系,但出现错误 -
==> SyntaxException: expected return clause
==> "start n = node(1) match n-[r:KNOWS]-m delete r; "
即使我给
start n = node(1) match n-[r:KNOWS]-m delete r return count(r);
它不起作用。
注意:在 neo4j 1.8 上没有看到上述问题,但我必须以某种方式在 neo4j 1.6 上运行查询。