Created
May 2, 2019 16:55
-
-
Save vladbatushkov/21f08daad73d4f780f5e1da770fddf34 to your computer and use it in GitHub Desktop.
Count totals.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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