Skip to content

Instantly share code, notes, and snippets.

@jexp
Forked from cheerfulstoic/graph_gist_template.adoc
Last active February 22, 2024 17:29
Show Gist options
  • Save jexp/a56f7e7587ce5ed97561 to your computer and use it in GitHub Desktop.
Save jexp/a56f7e7587ce5ed97561 to your computer and use it in GitHub Desktop.
CHANGEME: GraphGist Template. Fork to make your own, view source to see instruction comments

REPLACEME: TITLE OF YOUR GRAPHGIST

Introduction

REPLACEME: Introductory text and domain model image.

5giAsjq

Setup

CREATE
  (a:Person {name: 'Alice'}),
  (b:Person {name: 'Bob'}),
  (c:Person {name: 'Carrie'}),
  (d:Person {name: 'David'}),
  (e:Person {name: 'Emily'}),
  (a)-[:FRIENDS_WITH]->(b),
  (a)-[:FRIENDS_WITH]->(e),
  (b)-[:FRIENDS_WITH]->(c),
  (b)-[:FRIENDS_WITH]->(d)

REPLACEME: FIRST USECASE TITLE

MATCH (a:Person {name: 'Alice'})-[:FRIENDS_WITH]-(:Person)-[:FRIENDS_WITH]-(fof:Person)
RETURN fof.name as fof, count(*) as frequency

REPLACEME: SECOND USE-CASE TITLE

MATCH path=(a:Person {name: 'Alice'})-[:FRIENDS_WITH]-(:Person)-[:FRIENDS_WITH]-(fof:Person)
RETURN path, a, fof

REPLACEME: THIRD USE-CASE TITLE

Conclusions

REPLACEME: Offer a conclusion

Resources

REPLACEME: Link to resorces like data sources, further discussions,


Created by YOUR NAME - Twitter | Blog | LinkedIn

@rtack
Copy link

rtack commented Sep 20, 2016

resorces --> resources
pedagocial --> pedagogical

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment