如何在neo4j shell中传递参数列表?

时间:2018-12-20 20:09:42

标签: neo4j cypher

我需要语法方面的帮助,因为每当我将一个参数切换到参数列表时,neo4j shell(3.9.1)就会挂起。似乎这应该超级简单,但是每次都会使计算机崩溃。

这对于输入“ 1”和“ 2”都非常快速:

export inputids="1"
MATCH (inputnodes:Type1)<-[R*0..]-(excludednodes:Type2)
WHERE inputnodes.myId in $inputids
return excludednodes.myId;

每次都崩溃:

export inputids=["1","2"]
MATCH (inputnodes:Type1)<-[R*0..]-(excludednodes:Type2)
WHERE inputnodes.myId in $inputids
return excludednodes.myId;

非常感谢任何指针!

0 个答案:

没有答案