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
This commit is contained in:
LIttleAncientForestKami
2015-12-09 02:16:07 +01:00
parent 3feea2d19f
commit 27997d7cd5

3
c/cypherNeo4j.cypher Normal file
View File

@@ -0,0 +1,3 @@
CREATE (Hello:Word { val: 'Hello' }), (World:Word { val: 'World!' }),
(Hello)-[:SPACE]->(World)
RETURN Hello,World