ListIssuesQueryWithSince is the query structure for fetching issues without label filtering but with since filtering.
| 541 | |
| 542 | // ListIssuesQueryWithSince is the query structure for fetching issues without label filtering but with since filtering. |
| 543 | type ListIssuesQueryWithSince struct { |
| 544 | Repository struct { |
| 545 | Issues IssueQueryFragment `graphql:"issues(first: $first, after: $after, states: $states, orderBy: {field: $orderBy, direction: $direction}, filterBy: {since: $since, issueFieldValues: $issueFieldValues})"` |
| 546 | IsPrivate githubv4.Boolean |
| 547 | } `graphql:"repository(owner: $owner, name: $repo)"` |
| 548 | } |
| 549 | |
| 550 | // ListIssuesQueryTypeWithLabelsWithSince is the query structure for fetching issues with both label and since filtering. |
| 551 | type ListIssuesQueryTypeWithLabelsWithSince struct { |
nothing calls this directly
no outgoing calls
no test coverage detected