Skip to content

Instantly share code, notes, and snippets.

@denvaar
Created July 26, 2017 16:31
Show Gist options
  • Save denvaar/1235fd26ec798c797e854fc06a7c7068 to your computer and use it in GitHub Desktop.
Save denvaar/1235fd26ec798c797e854fc06a7c7068 to your computer and use it in GitHub Desktop.
GraphQL query GitHub branches
query {
organization(login: "orgname") {
repository(name: "reponame") {
refs(first: 10, refPrefix: "refs/heads/") {
edges {
node {
name
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment