Skip to content

Instantly share code, notes, and snippets.

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