Skip to content

Instantly share code, notes, and snippets.

@leo424y
Forked from jonathansick/query.graphql
Created March 30, 2018 04:10
Show Gist options
  • Select an option

  • Save leo424y/b8ddc671362cc97e3b59ea88fba219d9 to your computer and use it in GitHub Desktop.

Select an option

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