GitHub_collection_hello-world/c/cypherNeo4j.cypher
LIttleAncientForestKami 27997d7cd5 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
2015-12-09 02:16:07 +01:00

4 lines
115 B
Plaintext

CREATE (Hello:Word { val: 'Hello' }), (World:Word { val: 'World!' }),
(Hello)-[:SPACE]->(World)
RETURN Hello,World