EditCommentForm.graphql

 1#import "./MessageCommentFragment.graphql"
 2#import "./MessageCreateFragment.graphql"
 3
 4mutation EditComment($input: EditCommentInput!) {
 5  editComment(input: $input) {
 6    bug {
 7      id
 8      timeline {
 9        comments: nodes {
10          ...Create
11          ...AddComment
12        }
13      }
14    }
15  }
16}