Skip to content

Instantly share code, notes, and snippets.

@mgax
Created October 19, 2018 20:27
Show Gist options
  • Save mgax/f15a30be8d7abeacb9e7f5790b87dfa9 to your computer and use it in GitHub Desktop.
Save mgax/f15a30be8d7abeacb9e7f5790b87dfa9 to your computer and use it in GitHub Desktop.
query ($login:String!, $first:Int!, $after:String,$before:String) {
user(login:$login) {
pullRequests(first:$first,after:$after,before:$before) {
nodes{
repository {
nameWithOwner
}
number
}
pageInfo {
endCursor
}
}
}
}
{
"login": "mgax",
"first": 10,
"after":null
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment