Skip to content

Instantly share code, notes, and snippets.

@mingliangguo
Created March 28, 2019 15:48
Show Gist options
  • Save mingliangguo/2a1afaeabf8e6131a5782022d5ee1019 to your computer and use it in GitHub Desktop.
Save mingliangguo/2a1afaeabf8e6131a5782022d5ee1019 to your computer and use it in GitHub Desktop.
PRsByPerson.graphql
query myPullRequests {
search(query: "org:mingliangguo type:pr state:open author:mingliangguo", type: ISSUE, first: 100) {
issueCount
pageInfo {
endCursor
hasNextPage
}
edges {
cursor
node {
... on PullRequest {
number
title
url
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment