How to get Pull Requests data using Github in the browser, or using the API to allow for automating reporting or building in values into a website.
- GitHub GQL API: https://developer.github.com/v4/
- Explorer: https://developer.github.com/v4/explorer/
- Github community topics - these were used to understand the syntax needed.
There some approaches followed in this gist.
Use the pullRequests
object on the viewer
(current user). And showing the repo associated. This is not so clean.
Or get PRs withing repos of the view
.
The approaches above are not so flexible.
This approach uses a search that one can do in the browser on Github and use that query in a search function in the GQL API.
- Click Pull Requests on Github or go to https://github.com/pulls .
- Change the search parameters or enter your own search.
- Use that search for the search GQL file in this gist.
- Note that
type
should beISSUE
to get Pull Requests. Alternatively, getUSER
orREPOSITORY
objects for other searches. - The default order is newest first. You can use oldest first with
sort:created-asc
.
- Note that
Here are sample searches:
- Default:
- Get all own PRs for my user, whether for my own repos or not. Includes private repos by default and excludes archived repos.
is:open is:pr author:MichaelCurrin archived:false
- Get all my contributions to public repos not owned by me:
is:merged is:pr is:public archived:false author:MichaelCurrin -user:MichaelCurrin
- Search results on Github: github.com/pulls?q=is%3Amerged+is%3Apr+...
- PRs in atom/atom and atom/github after a given data:
is:pr created:>2019-04-01 repo:atom/atom repo:atom/github
Use the explorer linked in Resources, copy and paste a query and run.
How to run a query using curl
and an auth token.
curl -H "Authorization: bearer token" -X POST -d " \
{ \
\"query\": \"query { viewer { login }}\" \
} \
" https://api.github.com/graphql
See Forming calls in the docs for details.
See below for simplified sample data for search query described earlier.
{
"issueCount": 1,
"edges": [
{
"node": {
"number": 105,
"title": "fix: Allow config flag to take a parameter",
"repository": {
"nameWithOwner": "docsifyjs/docsify-cli"
},
"createdAt": "2020-05-17T18:59:33Z",
"mergedAt": "2020-05-18T08:39:27Z",
"url": "https://github.com/docsifyjs/docsify-cli/pull/105",
"changedFiles": 1,
"additions": 1,
"deletions": 1
}
}
]
}
I like the search approach so want to use that more.
- The query can be parametized - send JSON data as the search query. Unfortunately the query has to be prepated in JSON - you can't send just username as an argument (unless GQL has a way to concatenate strings).
- Adding paging for higher volume searches.
- Extend to search for other types not just PRs.
- Add a parser to turn the data in a CSV, or embed on a website.
I that possible to get the list of Github projects a user XYZ contributed to, sorted by number of PR, with the number of PR by projects, in order to create graphs?
also only counting open + merged and not closed would be nice but since merged is a sub-set of close it sounds difficult to do since the search query doesn't allow is:open + is:merged in the same query.