Skip to content

Instantly share code, notes, and snippets.

@vladbatushkov
Created July 30, 2019 16:10
Show Gist options
  • Save vladbatushkov/9ff2a2297eb209945fa206c493be8171 to your computer and use it in GitHub Desktop.
Save vladbatushkov/9ff2a2297eb209945fa206c493be8171 to your computer and use it in GitHub Desktop.
Robert total calls and max duration.
MATCH (p1:Person)-[:OUT]->(c:Call)
WHERE p1.name = "Robert"
RETURN p1.name as name, count(c) as total_calls, max(c.duration) as max_duration
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment