Created
October 9, 2019 14:10
-
-
Save SvanBoxel/6bfd35626d8368facc122a3324bc8a72 to your computer and use it in GitHub Desktop.
commit stats
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
{ | |
user(login: "svanboxel") { | |
repositories(first: 5) { | |
edges { | |
node { | |
name | |
refs(refPrefix: "refs/heads/", first: 10) { | |
nodes { | |
id | |
name | |
target { | |
... on Commit { | |
additions | |
deletions | |
} | |
} | |
} | |
} | |
} | |
} | |
pageInfo { | |
hasNextPage | |
endCursor | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment