GraphQL: Add EditComment to mutation type

Sascha created

Change summary

api/graphql/schema/root.graphql | 2 ++
1 file changed, 2 insertions(+)

Detailed changes

api/graphql/schema/root.graphql 🔗

@@ -8,6 +8,8 @@ type Mutation {
     newBug(input: NewBugInput!): NewBugPayload!
     """Add a new comment to a bug"""
     addComment(input: AddCommentInput!): AddCommentPayload!
+    """Change a comment of a bug"""
+    editComment(input: EditCommentInput!): EditCommentPayload!
     """Add or remove a set of label on a bug"""
     changeLabels(input: ChangeLabelInput): ChangeLabelPayload!
     """Change a bug's status to open"""