You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 26, 2022. It is now read-only.
From Neo4J docs:
Create a full path
When you use CREATE and a pattern, all parts of the pattern that are not already in scope at this time will be created.
Query
CREATE p =(andres { name:'Andres' })-[:WORKS_AT]->(neo)<-[:WORKS_AT]-(michael { name:'Michael' })
RETURN p
This query creates three nodes and two relationships in one go, assigns it to a path identifier, and returns it.
http://neo4j.com/docs/milestone/query-create.html#create-create-a-full-path
It's possible with CypherNet this query?
The text was updated successfully, but these errors were encountered: