| 537 | // AddSubIssue adds a sub-issue to a parent issue. |
| 538 | func AddSubIssue(client *Client, hostname string, parentID string, subIssueID string, replaceParent bool) error { |
| 539 | type AddSubIssueInput struct { |
| 540 | IssueID githubv4.ID `json:"issueId"` |
| 541 | SubIssueID githubv4.ID `json:"subIssueId"` |
| 542 | ReplaceParent githubv4.Boolean `json:"replaceParent"` |
| 543 | } |
| 544 | |
| 545 | var mutation struct { |
| 546 | AddSubIssue struct { |
nothing calls this directly
no outgoing calls
no test coverage detected