Skip to content

Instantly share code, notes, and snippets.

@Mkang1204
Forked from jexp/graph_gist_template.adoc
Last active November 12, 2018 17:20
Show Gist options
  • Save Mkang1204/e62348f1159968d99c846edd606d5df1 to your computer and use it in GitHub Desktop.
Save Mkang1204/e62348f1159968d99c846edd606d5df1 to your computer and use it in GitHub Desktop.
Graphgist_MK

REPLACEME: Graphgit01_MK

Introduction

This is the first graphgist created by Mengjia Kang

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 Mengjia Kang - Twitter | Blog | LinkedIn

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