ListIssuesQuery is the root query structure for fetching issues with optional label filtering.
| 525 | |
| 526 | // ListIssuesQuery is the root query structure for fetching issues with optional label filtering. |
| 527 | type ListIssuesQuery struct { |
| 528 | Repository struct { |
| 529 | Issues IssueQueryFragment `graphql:"issues(first: $first, after: $after, states: $states, orderBy: {field: $orderBy, direction: $direction}, filterBy: {issueFieldValues: $issueFieldValues})"` |
| 530 | IsPrivate githubv4.Boolean |
| 531 | } `graphql:"repository(owner: $owner, name: $repo)"` |
| 532 | } |
| 533 | |
| 534 | // ListIssuesQueryTypeWithLabels is the query structure for fetching issues with optional label filtering. |
| 535 | type ListIssuesQueryTypeWithLabels struct { |
nothing calls this directly
no outgoing calls
no test coverage detected