From StackOverflow: [ { quote ] } CREATE UNIQUE is set to be completely replaced by MERGE. So your syntax would be :
MATCH (r:Person {name:'Jon'}) MATCH (s:Person {name:'Ana'}) MERGE (r)-[:FRIEND_OF]->(s) [/ { quote ] }
We need to update the cypher queries we generate. |
|