Skip to content

Instantly share code, notes, and snippets.

@shapr
Created July 13, 2017 20:48
Show Gist options
  • Save shapr/5d84727c3355581da61ea5488c2a57ed to your computer and use it in GitHub Desktop.
Save shapr/5d84727c3355581da61ea5488c2a57ed to your computer and use it in GitHub Desktop.
github enterprise graphql query
{
viewer {
login
name
bio
isHireable
createdAt
}
repository(owner: "owner", name: "reponame") {
pullRequests(last: 20) {
totalCount
edges{
node {
title
mergeable
state
body
comments (last: 5) {
edges {
node {
body
}
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment