Created
June 13, 2016 19:43
-
-
Save kontext-e/fed566968453287da4bed3a651ff4ec1 to your computer and use it in GitHub Desktop.
This file contains 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 (c:Git:Change)-[:MODIFIES]->(f:Git:File) | |
with f.relativePaht as path | |
where path=~'.*.java' | |
return count(c) as cnt, path | |
order by cnt desc; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment