我正在寻找一个单个 Cypher查询,它将增加一个整数节点参数,并在启动它时将其返回0
,以防它不存在。< / p>
跟伪伪Cypher一样:
MATCH (n:Order)
IF n.product_count IS NULL THEN n.product_count = 0 // this line is what I need
SET n.product_count = n.product_count + 1
RETURN n.product_count
我能够使用FOREACH
语句组合查询来完成工作,但这看起来很糟糕,并不适合我的用例:
MATCH (n:Order)
WHERE id(n) = 9503
FOREACH ( i in (CASE WHEN n.product_count IS NULL THEN [1] ELSE [] END) | SET n.product_count = 0 )
SET n.product_count = n.product_count + 1
RETURN n.product_count;
如何以正确的方式做到这一点?
注意:Order
节点非常复杂并且包含许多其他属性,因此在这种情况下MERGE
声明非常不受欢迎。
答案 0 :(得分:6)
Neo4j为类似合并的情况提供了有用的功能。
Coalesce接受任意数量的参数,并返回非NULL的第一个参数。在所有参数都为NULL的情况下,它只返回NULL。
所以,例如:
coalesce(NULL, 1) // equates to 1
coalesce("hello", 6) // equates to "hello"
coalesce(NULL, "world", NULL) // equates to "world"
coalesce(NULL, NULL) // equates to NULL
因此,您的查询看起来像这样:
MATCH (n:Order)
SET n.product_count = coalesce(n.product_count, 0) + 1
RETURN n.product_count
这是关于合并的官方文档:
http://neo4j.com/docs/stable/query-functions-scalar.html#functions-coalesce