aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha <GlancingMind@outlook.com>2021-03-16 14:13:49 +0100
committerSascha <GlancingMind@outlook.com>2021-03-19 17:49:34 +0100
commit19a68deabb2a047795436e8e5d0ce9a8618fd01a (patch)
treea2f5658df70b07fb2729b59d9090ef83b3f21df7
parent79cc9884b3d1b93c2a17b6a1e7d5cc2c7f5f7c0f (diff)
downloadgit-bug-19a68deabb2a047795436e8e5d0ce9a8618fd01a.tar.gz
GraphQL: Add EditComment to mutation type
-rw-r--r--api/graphql/schema/root.graphql2
1 files changed, 2 insertions, 0 deletions
diff --git a/api/graphql/schema/root.graphql b/api/graphql/schema/root.graphql
index 94a0b530..884fd98d 100644
--- a/api/graphql/schema/root.graphql
+++ b/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"""