我将以下图表作为Neo4j图形数据库:
activates
(80 °F)
(A)------------------------------------->(D)
| \__ _/->^
| \__ activates __/ |
| \__(50 °F) __/ |
| \__ __/ |
| \__ __/ |
activates | \__ __/ |
(50 °F) | \/ | activates
| __/\__ | (50 °F)
| activates __/ \__ |
| (60 °F)__/ \__ |
| __/ \__ |
| __/ \__ |
| __/ \_ |
v / \->|
(B)------------------------------------->(C)
activates
(50 °F)
每个关系都有一个属性,表示“激活”操作所需的温度。
我需要在(A)和(D)之间检索所有可用路径 WHERE 沿路径温度为50°F。
输出应包括:
A -[:activates{temperature:'50'}]-> B -[:activates{temperature:'50'}]-> C -[:activates{temperature:'50'}]-> D
A -[:activates{temperature:'50'}]-> C -[:activates{temperature:'50'}]-> D
但不是
A -[:activates{temperature:'80'}]-> D
A -[:activates{temperature:'50'}]-> B -[:activates{temperature:'60'}]-> D
如何编写所需的Cypher查询?
提前致谢。
编辑1:我添加了另一个对角线关系(B - [:激活{温度:'80'}] - > D)以获得更清晰。
编辑2 我需要在(A)和(D)之间检索所有可用路径 WHERE 温度为沿路径相同的,即:A - > B - > C - > D,A - > C - > D,A - > d。
答案 0 :(得分:17)
START a=node({A}), d=node({D})
MATCH p=a-[r:ACTIVATES*..]-d
WHERE has(r.temperature) and r.temperature='50'
RETURN p;
用曲线括号(A,D)替换它们的节点ID
<强>更新强> 使用函数all
START a=node(1), d=node(4)
MATCH p=a-[r:ACTIVATES*..]-d
WITH head(relationships(p))as r1,p //since the pointer r is a collection of rels we must declare a single relationship pointer
WHERE all(r2 in relationships(p)
where r2.temperature=r1.temperature)
return p;