From 27997d7cd58525fbda1bba786099d5cb4194bc01 Mon Sep 17 00:00:00 2001 From: LIttleAncientForestKami Date: Wed, 9 Dec 2015 02:16:07 +0100 Subject: [PATCH] Cypher, Neo4j, creates a Hello-:space->World! graph Anyone who attempts to generate random numbers by deterministic means is, of course, living in a state of sin. -- John von Neumann --- c/cypherNeo4j.cypher | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 c/cypherNeo4j.cypher diff --git a/c/cypherNeo4j.cypher b/c/cypherNeo4j.cypher new file mode 100644 index 00000000..abad0e9c --- /dev/null +++ b/c/cypherNeo4j.cypher @@ -0,0 +1,3 @@ +CREATE (Hello:Word { val: 'Hello' }), (World:Word { val: 'World!' }), +(Hello)-[:SPACE]->(World) +RETURN Hello,World