如果使用单个Cypher查询不存在,则启动并返回节点属性

时间:2014-12-27 11:36:37

标签: neo4j cypher

我正在寻找一个单个 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声明非常不受欢迎。

1 个答案:

答案 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