| 516 | // AddSubIssue adds a sub-issue to a parent issue. |
| 517 | func AddSubIssue(client *Client, hostname string, parentID string, subIssueID string, replaceParent bool) error { |
| 518 | type AddSubIssueInput struct { |
| 519 | IssueID githubv4.ID `json:"issueId"` |
| 520 | SubIssueID githubv4.ID `json:"subIssueId"` |
| 521 | ReplaceParent githubv4.Boolean `json:"replaceParent"` |
| 522 | } |
| 523 | |
| 524 | var mutation struct { |
| 525 | AddSubIssue struct { |
nothing calls this directly
no outgoing calls
no test coverage detected