Created
July 10, 2019 15:15
-
-
Save vladbatushkov/96c5d7c6958d99498d0c8f3428cb6431 to your computer and use it in GitHub Desktop.
How many calls initiated by Liam?
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 (p:Person)-[:OUT]->(c:Call) | |
WHERE p.name = "Liam" | |
RETURN p.name, count(c) as calls |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment