diff options
author | Sascha <GlancingMind@outlook.com> | 2021-03-17 21:21:20 +0100 |
---|---|---|
committer | Sascha <GlancingMind@outlook.com> | 2021-03-19 17:52:27 +0100 |
commit | d6c3ffa984c57a546d437d9be989077d824fac46 (patch) | |
tree | b6aff0defba22f7321c5b4457cf380c9f94ff50b /webui/src/pages/bug/EditCommentForm.graphql | |
parent | d4f96fa91faa6f56a790ebc7fd041af705ed77b0 (diff) | |
download | git-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.graphql | 7 |
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 + } + } +} |