summaryrefslogtreecommitdiff
path: root/source/features/show-open-prs-of-forks.gql
blob: 6c91c6e54d8b6a9a81d89caef7beb9da03e8496f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
query GetPRs($query: String!) {
	search(first: 100, type: ISSUE, query: $query) {
		nodes {
			... on PullRequest {
				number
				headRepository {
					nameWithOwner
				}
			}
		}
	}
}