| 568 | // AddBlockedBy marks an issue as blocked by another issue. |
| 569 | func AddBlockedBy(client *Client, hostname string, issueID string, blockingIssueID string) error { |
| 570 | type AddBlockedByInput struct { |
| 571 | IssueID githubv4.ID `json:"issueId"` |
| 572 | BlockingIssueID githubv4.ID `json:"blockingIssueId"` |
| 573 | } |
| 574 | |
| 575 | var mutation struct { |
| 576 | AddBlockedBy struct { |
nothing calls this directly
no outgoing calls
no test coverage detected