where语句过滤掉不在list中的节点
想在where语句中过滤掉出现在list中的节点,有什么办法么?目前只知道有where XX in list,有没有类似where XX not in list的语句?
3 回复
create(:Int {int:1}), (:Int {int:2}), (:Int {int:3}), (:Int {int:5})
:param lyst:[1,2,3,4]
match(a:Int) where not (a.int in $lyst) return a 或者你可以看这里 http://neo4j.com.cn/topic/5c861fdbcd4dafa110f1d08e