mtranter / CypherNet

A .Net API for the Neo4j HTTP Transactional Endpoint
Microsoft Public License
55 stars 23 forks source link

Creating a full path is possible? #14

Open Micha-kun opened 9 years ago

Micha-kun commented 9 years ago

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?