Common interface for all issue query types
| 508 | |
| 509 | // Common interface for all issue query types |
| 510 | type IssueQueryResult interface { |
| 511 | GetIssueFragment() IssueQueryFragment |
| 512 | GetIsPrivate() bool |
| 513 | } |
| 514 | |
| 515 | type IssueQueryFragment struct { |
| 516 | Nodes []IssueFragment `graphql:"nodes"` |
no outgoing calls
no test coverage detected