在Neo4j的现有节点上建立关系的问题

时间:2018-11-26 01:56:03

标签: neo4j cypher

每当我尝试在已创建的2个单独的节点之间建立关系时,都会收到“无更改,无记录”消息。

Create(Redmayne:actor{name: "Edward Redmayne", PlaceOfBirth: "England", YearOfBirth: 1982})
return Redmayne;

第二个节点

Create(`Fantastic Beasts`:movie{language:"English", genre:"Family"})
return `Fantastic Beasts`;

关系查询

Match (a:actor), (b:movie)
where a.name="Edward Redmayne" and b.name="Fantastic Beasts"
Create (a)-[r:`acted in`]->(b)
return a,b;

关于我在做什么错的任何线索吗?

0 个答案:

没有答案