-
-
Save leo424y/b8ddc671362cc97e3b59ea88fba219d9 to your computer and use it in GitHub Desktop.
GitHub GraphQL repo commit history query
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
| { | |
| repository(name: "sickvim", owner: "jonathansick") { | |
| ref(qualifiedName: "master") { | |
| target { | |
| ... on Commit { | |
| id | |
| history(first: 5) { | |
| pageInfo { | |
| hasNextPage | |
| } | |
| edges { | |
| node { | |
| messageHeadline | |
| oid | |
| message | |
| author { | |
| name | |
| date | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment