Skip to content

Instantly share code, notes, and snippets.

@bendtherules
Last active May 23, 2019 05:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bendtherules/c7564c536b7719be4ebdbfa8c640df43 to your computer and use it in GitHub Desktop.
Save bendtherules/c7564c536b7719be4ebdbfa8c640df43 to your computer and use it in GitHub Desktop.
github_graphql
{
repositoryOwner(login: "bendtherules") {
repositories(first: 100, isFork: true) {
nodes {
id
nameWithOwner
refs(refPrefix: "refs/heads/", last: 100) {
edges {
node {
branchName: name
target {
oid
... on Commit {
id
history(first: 100) {
edges {
node {
messageHeadline
oid
message
author {
name
email
}
}
}
}
}
}
}
}
}
parent {
id
nameWithOwner
refs(refPrefix: "refs/heads/", last: 100) {
edges {
node {
branchName: name
target {
oid
}
}
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment