Created
October 19, 2018 20:27
-
-
Save mgax/f15a30be8d7abeacb9e7f5790b87dfa9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
} | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"login": "mgax", | |
"first": 10, | |
"after":null | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment