summaryrefslogtreecommitdiff
path: root/source/features/pr-filters.gql
blob: 0e85e727c748730abe0f6a8eb93bc4f2c8e80ea4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
query HasChecks($owner: String!, $name: String!) {
	repository(owner: $owner, name: $name) {
		head: object(expression: "HEAD") {
			... on Commit {
				history(first: 10) {
					nodes {
						statusCheckRollup {
							state
						}
					}
				}
			}
		}
	}
}