diff options
author | Sascha <GlancingMind@outlook.com> | 2021-03-16 14:13:49 +0100 |
---|---|---|
committer | Sascha <GlancingMind@outlook.com> | 2021-03-19 17:49:34 +0100 |
commit | 19a68deabb2a047795436e8e5d0ce9a8618fd01a (patch) | |
tree | a2f5658df70b07fb2729b59d9090ef83b3f21df7 /api | |
parent | 79cc9884b3d1b93c2a17b6a1e7d5cc2c7f5f7c0f (diff) | |
download | git-bug-19a68deabb2a047795436e8e5d0ce9a8618fd01a.tar.gz |
GraphQL: Add EditComment to mutation type
Diffstat (limited to 'api')
-rw-r--r-- | api/graphql/schema/root.graphql | 2 |
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""" |