Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save vladbatushkov/751650745382fc06024a7126504ee9b7 to your computer and use it in GitHub Desktop.
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.
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