aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages/bug/EditCommentForm.graphql
diff options
context:
space:
mode:
authorSascha <GlancingMind@outlook.com>2021-03-17 21:21:20 +0100
committerSascha <GlancingMind@outlook.com>2021-03-19 17:52:27 +0100
commitd6c3ffa984c57a546d437d9be989077d824fac46 (patch)
treeb6aff0defba22f7321c5b4457cf380c9f94ff50b /webui/src/pages/bug/EditCommentForm.graphql
parentd4f96fa91faa6f56a790ebc7fd041af705ed77b0 (diff)
downloadgit-bug-d6c3ffa984c57a546d437d9be989077d824fac46.tar.gz
Fix graphql filename capitalization
Diffstat (limited to 'webui/src/pages/bug/EditCommentForm.graphql')
-rw-r--r--webui/src/pages/bug/EditCommentForm.graphql7
1 files changed, 7 insertions, 0 deletions
diff --git a/webui/src/pages/bug/EditCommentForm.graphql b/webui/src/pages/bug/EditCommentForm.graphql
new file mode 100644
index 00000000..c7047e6e
--- /dev/null
+++ b/webui/src/pages/bug/EditCommentForm.graphql
@@ -0,0 +1,7 @@
+mutation EditComment($input: EditCommentInput!) {
+ editComment(input: $input) {
+ bug {
+ id
+ }
+ }
+}