Skip to content

Instantly share code, notes, and snippets.

@Synashida
Created October 16, 2017 13:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Synashida/19611bed4087de348ebff22f2f63cdb8 to your computer and use it in GitHub Desktop.
Save Synashida/19611bed4087de348ebff22f2f63cdb8 to your computer and use it in GitHub Desktop.
neo4jで仕入先と得意先を可視化してみる。 ref: http://qiita.com/Syn256/items/8015e2a6a35e59af5c41
MATCH (s:Company),(c:Company)
WHERE s.name IN c.supplyer
CREATE (s)-[r:得意先]->(c)
RETURN r;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment