Not working alone on one of my neo4j projects, I was wondering if it was possible to create a script so that my colleagues could run it without having to copy everything (This script mainly consists of creating a new relationship) here are the pieces of code I need:
First
CREATE (Apple) - [: INCLUDE_ON] -> (Apple)
2nd
MATCH
(a1: Apple),
(a2: Apple)
WHERE a1.name = 'greenapple' AND a2.name = 'redapple'
CREATE (a1) - [a3: INCLUDE_ON] -> (a2)
RETURN type (a3)
Thanks a lot !