Created
November 21, 2017 15:42
-
-
Save sylhare/a396899e144aa6f9d2ee9dc50351afd0 to your computer and use it in GitHub Desktop.
Revisions
-
sylhare revised this gist
Nov 21, 2017 . 1 changed file with 6 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,4 +4,10 @@ ---- CREATE (neo:Database {name:'Neo4j'}) CREATE (neo)-[:SUPPORTS]->(:Language {name:'Cypher'}) ---- [source,cypher] ---- MATCH (db:Database)-[:SUPPORTS]->(language:Language) RETURN db.name as db, collect(language.name) as languages ---- -
sylhare created this gist
Nov 21, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ //setup //hide [source,cypher] ---- CREATE (neo:Database {name:'Neo4j'}) CREATE (neo)-[:SUPPORTS]->(:Language {name:'Cypher'}) ----