Merge pull request #242 from LIttleAncientForestKami/neo4j-cypher

Cypher, Neo4j, creates a Hello-:space->World! graph
This commit is contained in:
Mike Donaghy
2015-12-13 01:56:15 -05:00

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