Skip to content

Instantly share code, notes, and snippets.

@vladbatushkov
Created May 2, 2019 16:55
Show Gist options
  • Save vladbatushkov/21f08daad73d4f780f5e1da770fddf34 to your computer and use it in GitHub Desktop.
Save vladbatushkov/21f08daad73d4f780f5e1da770fddf34 to your computer and use it in GitHub Desktop.
Count totals.
MATCH (g:Genius)
MATCH (art:Artwork)
WITH count(art) as art_total, g
MATCH (inv:Invention)
WITH count(inv) as inv_total, art_total, g
RETURN g.name, art_total as artworks, inv_total as inventions
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment