blob: a428b7d08625ed7874ba90831070e908795dca96 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
query CountBugs($owner: String!, $name: String!) {
repository(owner: $owner, name: $name) {
labels(query: "bug", first: 10) {
nodes {
name
issues(states: OPEN) {
totalCount
}
}
}
}
}
|