Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
11-24-2021 12:52 AM
Hello,
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 !
11-25-2021 02:28 AM
Hi @Mastege ,
Neo4j itself does not yet have a way to share Cypher. There are a few approaches possible:
For creating a Neo4j Browser guide, please see: Tutorial: Create a Custom Browser Guide - Developer Guides
In particular note the need to whitelist the hosted location of the guide. Tutorial: Create a Custom Browser Guide - Developer Guides
Best,
ABK
All the sessions of the conference are now available online