Last active
August 1, 2019 18:08
-
-
Save vladbatushkov/f666c496bc73dd3ece10072bdaec3bf3 to your computer and use it in GitHub Desktop.
Day in February with lowest number of 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
// How to use NOT: https://neo4j.com/docs/cypher-manual/current/clauses/where/#filter-on-patterns-using-not | |
MATCH (c:Call) | |
WHERE c.from.month = 2 | |
RETURN date(c.from), count(c) as calls | |
ORDER BY calls | |
LIMIT 10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment