Revisions
-
rvanbruggen revised this gist
Jul 1, 2013 . 1 changed file with 1 addition and 1 deletion.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 @@ -15,6 +15,6 @@ CREATE beerbrand-[:IS_A]->beertype //graph1 == Customize the query with the neo4j console //console -
rvanbruggen revised this gist
Jul 1, 2013 . 1 changed file with 1 addition and 1 deletion.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 @@ -15,6 +15,6 @@ CREATE beerbrand-[:IS_A]->beertype //graph1 == Customize the query with the neo4j console== //console -
rvanbruggen revised this gist
Jul 1, 2013 . 1 changed file with 1 addition and 1 deletion.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 @@ -15,6 +15,6 @@ CREATE beerbrand-[:IS_A]->beertype //graph1 -- Customize the query with the neo4j console-- //console -
rvanbruggen revised this gist
Jul 1, 2013 . 1 changed file with 1 addition and 7 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 @@ -15,12 +15,6 @@ CREATE beerbrand-[:IS_A]->beertype //graph1 //console -
rvanbruggen revised this gist
Jul 1, 2013 . 1 changed file with 1 addition and 1 deletion.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 @@ -18,7 +18,7 @@ CREATE beerbrand-[:IS_A]->beertype [source,cypher] ---- MATCH beerbrand:beerbrand(name="BeerBrand")-[:HAS_ALCOHOL_PERCENTAGE]->(alcperc)-[:PRECEDES]-(otheralcperc) RETURN otheralcperc; ---- -
rvanbruggen revised this gist
Jul 1, 2013 . 1 changed file with 1 addition and 1 deletion.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 @@ -18,7 +18,7 @@ CREATE beerbrand-[:IS_A]->beertype [source,cypher] ---- MATCH beerbrand:beerbrand(name:'BeerBrand')-[:HAS_ALCOHOL_PERCENTAGE]->(alcperc)-[:PRECEDES]-(otheralcperc) RETURN otheralcperc; ---- -
rvanbruggen revised this gist
Jul 1, 2013 . 1 changed file with 1 addition and 1 deletion.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 @@ -18,7 +18,7 @@ CREATE beerbrand-[:IS_A]->beertype [source,cypher] ---- MATCH beerbrand:beerbrand(name="BeerBrand")-[:HAS_ALCOHOL_PERCENTAGE]->(alcperc)-[:PRECEDES]-(otheralcperc) RETURN otheralcperc; ---- -
rvanbruggen revised this gist
Jul 1, 2013 . 1 changed file with 1 addition and 1 deletion.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 @@ -18,7 +18,7 @@ CREATE beerbrand-[:IS_A]->beertype [source,cypher] ---- MATCH (beerbrand:beerbrand(name="BeerBrand"))-[:HAS_ALCOHOL_PERCENTAGE]->(alcperc)-[:PRECEDES]-(otheralcperc) RETURN otheralcperc; ---- -
rvanbruggen revised this gist
Jul 1, 2013 . 1 changed file with 1 addition and 1 deletion.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 @@ -18,7 +18,7 @@ CREATE beerbrand-[:IS_A]->beertype [source,cypher] ---- MATCH (beer:beerbrand(name="BeerBrand"))-[:HAS_ALCOHOL_PERCENTAGE]->(alcperc)-[:PRECEDES]-(otheralcperc) RETURN otheralcperc; ---- -
rvanbruggen revised this gist
Jul 1, 2013 . 1 changed file with 8 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 @@ -16,3 +16,11 @@ CREATE beerbrand-[:IS_A]->beertype //graph1 [source,cypher] ---- MATCH beer:beerbrand(name="BeerBrand")-[:HAS_ALCOHOL_PERCENTAGE]-(alcperc)-[:PRECEDES]-(otheralcperc) RETURN otheralcperc; ---- //console // -
rvanbruggen revised this gist
Jul 1, 2013 . 1 changed file with 4 additions and 4 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 @@ -1,18 +1,18 @@ = My simple BeerGraph Datamodel = Let's see if I can create a graphgist for my beers [source,cypher] ---- CREATE (brewery:brewery{name:'Brewery'}), (beerbrand:beerbrand{name:'BeerBrand'}), (alcperc:alcoholpercentage{name:'Percentage'}), (beertype:beertype{name:'BeerType'}) CREATE (alcpercbefore:alcoholpercentage{name:'PercentageBefore'}), (alcpercafter:alcoholpercentage{name:'PercentageAfter'}) CREATE brewery-[:BREWS]->beerbrand<-[:HAS_ALCHOLHOL_PERCENTAGE]-alcperc CREATE alcpercbefore-[:PRECEDES]->alcperc-[:PRECEDES]->alcpercafter CREATE beerbrand-[:IS_A]->beertype ---- * Hover over the nodes to see the +name+ node property in the Graph below. //graph1 [source,cypher] -
rvanbruggen revised this gist
Jul 1, 2013 . 1 changed file with 5 additions and 3 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,9 +4,11 @@ Let's see if I can create a graphgist for my beers [source,cypher] ---- CREATE (brewery{name:'Brewery'}), (beerbrand{name:'BeerBrand'}), (alcperc{name:'Percentage'}), (beertype{name:'BeerType'}) CREATE (alcpercbefore{name:'PercentageBefore'}), (alcpercafter{name:'PercentageAfter'}) CREATE brewery-[:BREWS]->beerbrand<-[:HAS_ALCHOLHOL_PERCENTAGE]-alcperc CREATE alcpercbefore-[:PRECEDES]->alcperc-[:PRECEDES]->alcpercafter CREATE beerbrand-[:IS_A]->beertype ---- * Hover over the nodes to see the +name+ node property in the Graph below. -
rvanbruggen revised this gist
Jul 1, 2013 . 1 changed file with 2 additions and 2 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 @@ -5,8 +5,8 @@ Let's see if I can create a graphgist for my beers [source,cypher] ---- CREATE (brewery{name:'Brewery'})-[:BREWS]->(beerbrand{name:'BeerBrand'})<-[:HAS_ALCHOLHOL_PERCENTAGE]-(alcperc{name:'Percentage'}) CREATE (alcpercbefore{name:'PercentageBefore'}-[:PRECEDES]->alcperc-[:PRECEDES]->(alcpercafter{name:'PercentageAfter'}) CREATE beerbrand-[:IS_A]->(beertype{name:'BeerType'}) ---- * Hover over the nodes to see the +name+ node property in the Graph below. -
rvanbruggen revised this gist
Jul 1, 2013 . 1 changed file with 1 addition and 1 deletion.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 @@ -5,7 +5,7 @@ Let's see if I can create a graphgist for my beers [source,cypher] ---- CREATE (brewery{name:'Brewery'})-[:BREWS]->(beerbrand{name:'BeerBrand'})<-[:HAS_ALCHOLHOL_PERCENTAGE]-(alcperc{name:'Percentage'}) CREATE (alcpercbefore{name:'Percentage-1'}-[:PRECEDES]->(alcperc)-[:PRECEDES]->(alcpercafter{name:'Percentage+1'}) CREATE (beerbrand)-[:IS_A]->(beertype{name:'BeerType'}) ---- -
rvanbruggen revised this gist
Jul 1, 2013 . 1 changed file with 4 additions and 4 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,13 +4,13 @@ Let's see if I can create a graphgist for my beers [source,cypher] ---- CREATE (brewery{name:'Brewery'})-[:BREWS]->(beerbrand{name:'BeerBrand'})<-[:HAS_ALCHOLHOL_PERCENTAGE]-(alcperc{name:'Percentage'}) CREATE (alcpercbefore{name:'Percentage-1'}-[:PRECEDES]-(alcperc)-[:PRECEDES]->(alcpercafter{name:'Percentage+1'}) CREATE (beerbrand)-[:IS_A]->(beertype{name:'BeerType'}) ---- * Hover over the nodes to see the +name+ node property in the Graph below. * Hit the RUN button to execute the query in the console down below. //graph1 -
rvanbruggen revised this gist
Jul 1, 2013 . 1 changed file with 2 additions and 2 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,8 +4,8 @@ Let's see if I can create a graphgist for my beers [source,cypher] ---- CREATE (brewery{name:'Brewery'})-[:BREWS]->(beerbrand{name:'BeerBrand'})-[:HAS_ALCHOLHOL_PERCENTAGE]->(alcperc{name:'Percentage'}) CREATE (alcpercbefore{name:'Percentage-1'}-[:PRECEDES]->(alcpercafter{name:'Percentage+1'}) CREATE (beerbrand)-[:IS_A]-(beertype{name:'BeerType'}) ---- -
rvanbruggen revised this gist
Jul 1, 2013 . 1 changed file with 1 addition and 1 deletion.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 @@ -12,5 +12,5 @@ CREATE (beerbrand)-[:IS_A]-(beertype{name:'BeerType'}) * Hover over the nodes to see the +name+ node property in the Graph below. * Hit the RUN button to execute the query in the console down below. // graph1 -
rvanbruggen renamed this gist
Jul 1, 2013 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
rvanbruggen revised this gist
Jul 1, 2013 . 1 changed file with 5 additions and 69 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 @@ -1,80 +1,16 @@ = My first try at a graphgist = Let's see if I can create a graphgist for my beers [source,cypher] ---- CREATE (brewery{name:'Brewery'})-[:BREWS]->(beerbrand{name:'BeerBrand'})-[:HAS_ALCHOLHOL_PERCENTAGE]->(alcperc{name:'%'}) CREATE (alcpercbefore{name:'%-1'}-[:PRECEDES]->(alcpercafter{name:'&+1'}) CREATE (beerbrand)-[:IS_A]-(beertype{name:'BeerType'}) ---- * Hover over the nodes to see the +name+ node property in the Graph below. * Hit the RUN button to execute the query in the console down below. //graph1 -
nawroth revised this gist
Jun 28, 2013 . 1 changed file with 3 additions and 4 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 @@ -48,10 +48,9 @@ Below see the markup for some examples. CREATE (n{name:'first node'}); ---- Some more text after the first Query, and using an image: http://chinwag.com/files/logos/events/2221/neo4j_logo.png Now, let's insert the visualization for the second query. -
nawroth revised this gist
Jun 28, 2013 . 1 changed file with 3 additions and 3 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 @@ -15,17 +15,17 @@ CREATE (your_gistfile)-[:INSERT_ID_HERE]->({name:'Your GraphGist'}) == How can I do this? == Try forking and editing http://gist.neo4j.org/#5861321[A very simple GraphGist] to get started. Other interesting GraphGists: * http://gist.neo4j.org/#5878518[Money Laundering] This document is a GraphGist, see https://gist.github.com/nawroth/5880880[This Gist] for the source of this Gist, or click on the Navigation Bar Item. == The Rules == * GraphGists are shared via Github, and referenced by their Gist ID, e.g. the Github Gist https://gist.github.com/nawroth/5880880 can be referred to as the Graph Gist http://gist.neo4j.org/#5880880. * Everything is valid http://asciidoctor.org/docs/asciidoc-quick-reference/[AsciiDoc syntax], with some magic comments thrown in for extra fun. * Cypher queries are added as source blocks, use +[source,cypher]+ as the denominator. * All cypher statements are executed against a live, empty Neo4j database in the order they appear. The data is retained between the queries. -
nawroth revised this gist
Jun 27, 2013 . 1 changed file with 1 addition and 1 deletion.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 @@ -9,7 +9,7 @@ CREATE (your_gistfile)-[:INSERT_ID_HERE]->({name:'Your GraphGist'}) ---- * Hover over the nodes to see the +name+ node property in the Graph below. * Hit the RUN button to execute the query in the console down below. //graph1 -
nawroth revised this gist
Jun 27, 2013 . 1 changed file with 1 addition and 1 deletion.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 @@ -25,7 +25,7 @@ This document is a GraphGist, see https://gist.github.com/nawroth/5880880[This G == The Rules == * GraphGists are shared via Github, and referenced by their Gist ID, e.g. the Github Gist https://gist.github.com/nawroth/5880880 can be referred to as the Graph Gist http://neo4j-contrib.github.io/graphgist/#5880880. * Everything is valid http://asciidoctor.org/docs/asciidoc-quick-reference/[AsciiDoc syntax], with some magic comments thrown in for extra fun. * Cypher queries are added as source blocks, use +[source,cypher]+ as the denominator. * All cypher statements are executed against a live, empty Neo4j database in the order they appear. The data is retained between the queries. -
nawroth revised this gist
Jun 27, 2013 . 1 changed file with 1 addition and 1 deletion.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 @@ -9,7 +9,7 @@ CREATE (your_gistfile)-[:INSERT_ID_HERE]->({name:'Your GraphGist'}) ---- * Hover over the nodes to see the +name+ node property in the Graph below. * Hit the RUN button to execute the query in the <<cypherdoc-console,console>> down below. //graph1 -
nawroth revised this gist
Jun 27, 2013 . 1 changed file with 14 additions and 25 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 @@ -1,7 +1,6 @@ = The Neo4j GraphGist Console = This is a sample GraphGist explaining some of the base concepts of sharing graphs using http://docs.neo4j.org/chunked/milestone/cypher-query-lang.html[the Cypher query language]. [source,cypher] ---- @@ -22,23 +21,22 @@ Other interesting GraphGists: * http://neo4j-contrib.github.io/graphgist/#5878518[Money Laundering] This document is a GraphGist, see https://gist.github.com/nawroth/5880880[This Gist] for the source of this Gist, or click on the Navigation Bar Item. == The Rules == * GraphGists are shared via Github, and referenced by their Gist ID, e.g. the Github GIST https://gist.github.com/nawroth/5880880 can be referred to as the Graph Gist http://neo4j-contrib.github.io/graphgist/#5880880. * Everything is valid http://asciidoctor.org/docs/asciidoc-quick-reference/[AsciiDoc syntax], with some magic comments thrown in for extra fun. * Cypher queries are added as source blocks, use +[source,cypher]+ as the denominator. * All cypher statements are executed against a live, empty Neo4j database in the order they appear. The data is retained between the queries. * You can request a live console by using the comment tag +// console+ * You can request a graph visualization referring to the graph after the corresponding query number, e.g. +// graph1+ will insert the visualization of the graph after the first query block is run. == An example Gist == Below see the markup for some examples. // The following is a placeholder for a Cypher console. // console @@ -50,15 +48,14 @@ Below see the markup for some examples. CREATE (n{name:'first node'}); ---- Some more text after the first Query, using an external image, ++++ <img src="http://chinwag.com/files/logos/events/2221/neo4j_logo.png"/> ++++ Now, let's insert the visualization for the second query. //The following is a placeholder for the graph visualisation for query 2. //graph2 @@ -70,23 +67,15 @@ CREATE (movie)<-[:DIRECTED]-(:Director { name:"Wachowski" }),(movie)<-[:RATED { RETURN 1; ---- Let's do it for the above query, too. //graph3 A non-working query: [source,cypher] ---- CREATE (movie:Movie RETURN 1; ---- //graph4 -
nawroth revised this gist
Jun 27, 2013 . 1 changed file with 6 additions and 5 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 @@ -1,4 +1,4 @@ = The Neo4j GraphGist Console. = This is a sample GraphGist explaining some of the base concepts of sharing graphs using http://docs.neo4j.org/chunked/snapshot/cypher-query-lang.html[the Cypher query language]. @@ -14,7 +14,7 @@ CREATE (your_gistfile)-[:INSERT_ID_HERE]->({name:'Your GraphGist'}) //graph1 == How can I do this? == Try forking and editing http://neo4j-contrib.github.io/graphgist/#5861321[A very simple GraphGist] to get started. @@ -25,15 +25,16 @@ Other interesting GraphGists: This document is a GraphGist, see https://gist.github.com/peterneubauer/5857879[This Gist] for the source of this Gist, or click on the Navigation Bar Item. == The Rules == * GraphGists are shared via Github, and referenced by their Gist ID, e.g. the Github GIST https://gist.github.com/peterneubauer/5857879[https://gist.github.com/peterneubauer/5857879] can be referred to as the Graph GIST http://neo4j-contrib.github.io/graphgist/#5857879[http://neo4j-contrib.github.io/graphgist/#5857879] * everything is valid ASCIIDOC syntax, with some special comments and naming conventions make this work * Cypher queries are enumerated in the order they appear, starting at +1+, as source blocks, using +[source,cypher]+ as the denominator. * before rendering the page, all cypher statements are run against a live, empty Neo4j database in the order they appear * You can request a live console by using the comment tag +// console+ * You can request a graph vizualisation refering to the graph after the corresponding query number, e.g. +// graph1+ will insert the visualization of the graph after the first query block is run == An example Gist == Below see the markup for some examples. @@ -74,7 +75,7 @@ Let's do it for the this query, too //graph3 [[bonus]] == Bonus == you can even insert the graphs at different places, repeatedly -
Peter Neubauer revised this gist
Jun 27, 2013 . 1 changed file with 1 addition and 1 deletion.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 @@ -14,7 +14,7 @@ CREATE (your_gistfile)-[:INSERT_ID_HERE]->({name:'Your GraphGist'}) //graph1 === How can I do this? === Try forking and editing http://neo4j-contrib.github.io/graphgist/#5861321[A very simple GraphGist] to get started. -
Peter Neubauer revised this gist
Jun 27, 2013 . 1 changed file with 1 addition and 1 deletion.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 @@ -1,7 +1,7 @@ == The Neo4j GraphGist Console. == This is a sample GraphGist explaining some of the base concepts of sharing graphs using http://docs.neo4j.org/chunked/snapshot/cypher-query-lang.html[the Cypher query language]. [source,cypher] ---- -
Peter Neubauer revised this gist
Jun 27, 2013 . 1 changed file with 1 addition and 1 deletion.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 @@ -20,7 +20,7 @@ Try forking and editing http://neo4j-contrib.github.io/graphgist/#5861321[A very Other interesting GraphGists: * http://neo4j-contrib.github.io/graphgist/#5878518[Money Laundering] This document is a GraphGist, see https://gist.github.com/peterneubauer/5857879[This Gist] for the source of this Gist, or click on the Navigation Bar Item. -
Peter Neubauer revised this gist
Jun 27, 2013 . 1 changed file with 4 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 @@ -18,6 +18,10 @@ CREATE (your_gistfile)-[:INSERT_ID_HERE]->({name:'Your GraphGist'}) Try forking and editing http://neo4j-contrib.github.io/graphgist/#5861321[A very simple GraphGist] to get started. Other interesting GraphGists: * http://neo4j-contrib.github.io/graphgist/#5857879[Money Laundering] This document is a GraphGist, see https://gist.github.com/peterneubauer/5857879[This Gist] for the source of this Gist, or click on the Navigation Bar Item.
NewerOlder