Hi everyone! I'm trying to query issues on multiple repositories based in an organization. I have the following query {
organization(login: "angular") {
name
url
avatarUrl
repositories(first: 100) {
totalCount
edges {
node {
name
url
bugFixIssues: issues(first: 1, labels: ["type: bug/fix"], filterBy: {states: OPEN}) {
totalCount
}
}
}
}
}
} But I want to get all repositories only when the totalCount on bugFixIssues is more than 0 (zero). Is it possible? Thanks!
... View more