Skip to content

Instantly share code, notes, and snippets.

@austinbrian
Created April 17, 2019 21:24
Show Gist options
  • Save austinbrian/4326357e4d132afe58d7bad4140a05cb to your computer and use it in GitHub Desktop.
Save austinbrian/4326357e4d132afe58d7bad4140a05cb to your computer and use it in GitHub Desktop.
Cypher -- Get label counts
match (n)
unwind labels(n) as s
return distinct s, count(s)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment