Skip to content

Instantly share code, notes, and snippets.

@avdg
Created June 11, 2017 18:43
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 avdg/8dea024019b991b794461de451a3cdfe to your computer and use it in GitHub Desktop.
Save avdg/8dea024019b991b794461de451a3cdfe to your computer and use it in GitHub Desktop.
GraphQL Example to fetch pull requests information from mishoo/UglifyJS2
{
repository(owner: "mishoo", name: "UglifyJS2") {
pullRequests(last: 100) {
nodes {
closed
number
}
totalCount
}
}
rateLimit {
cost,
limit,
remaining,
resetAt
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment