neo4j cypher 根据关系查询一个节点,不存在则创建
大概逻辑是: match(a)-[r]->(b) where a.id=“123” and r.name="rName" case when not exist(b) then create(b) create(a)-[r]->(b) set r.name=“rName” as result 请教各位、怎么修改才能让它正确执行?
大概逻辑是: match(a)-[r]->(b) where a.id=“123” and r.name="rName" case when not exist(b) then create(b) create(a)-[r]->(b) set r.name=“rName” as result 请教各位、怎么修改才能让它正确执行?