| 716 | } |
| 717 | |
| 718 | func (ge *githubExporter) updateGithubIssueBody(ctx context.Context, gc *rateLimitHandlerClient, id string, body string) error { |
| 719 | m := &updateIssueMutation{} |
| 720 | input := githubv4.UpdateIssueInput{ |
| 721 | ID: id, |
| 722 | Body: (*githubv4.String)(&body), |
| 723 | } |
| 724 | |
| 725 | if err := gc.mutate(ctx, m, input, nil, ge.out); err != nil { |
| 726 | return err |
| 727 | } |
| 728 | |
| 729 | return nil |
| 730 | } |
| 731 | |
| 732 | func (ge *githubExporter) updateGithubIssueTitle(ctx context.Context, gc *rateLimitHandlerClient, id, title string) error { |
| 733 | m := &updateIssueMutation{} |