Created
July 14, 2019 16:21
-
-
Save vladbatushkov/751650745382fc06024a7126504ee9b7 to your computer and use it in GitHub Desktop.
All persons recived 10 minutes calls in July and made 5 minutes calls.
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 (c1:Call { duration: 10 })<-[:IN]-(p:Person) | |
WHERE (p)-[:OUT]->(:Call { duration: 5 }) AND c1.from.month = 7 | |
RETURN p |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment