Created
February 23, 2015 11:16
-
-
Save Spaider/5af3a4e3ba17ff507fb9 to your computer and use it in GitHub Desktop.
Several athletes with same RSVP
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 (a:Athlete)-[ar]->(r:RSVP) | |
with r, count(a) as cnt | |
where cnt > 1 | |
return id(r), cnt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment