diff options
author | Quentin Gliech <quentingliech@gmail.com> | 2020-02-13 00:19:22 +0100 |
---|---|---|
committer | Quentin Gliech <quentingliech@gmail.com> | 2020-02-13 00:19:22 +0100 |
commit | 680dd91c0c0200bd4948173df0b601e16f511e6e (patch) | |
tree | 4d4cd8fb1fa42c3d17fa507880bd7e2b470e0d4c /webui/src/bug/CommentForm.graphql | |
parent | 0066f3d8c278558eeac70d3cd7ca21c360014346 (diff) | |
download | git-bug-680dd91c0c0200bd4948173df0b601e16f511e6e.tar.gz |
webui: create comment form
Diffstat (limited to 'webui/src/bug/CommentForm.graphql')
-rw-r--r-- | webui/src/bug/CommentForm.graphql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/webui/src/bug/CommentForm.graphql b/webui/src/bug/CommentForm.graphql new file mode 100644 index 00000000..33d21193 --- /dev/null +++ b/webui/src/bug/CommentForm.graphql @@ -0,0 +1,5 @@ +mutation AddComment($input: AddCommentInput!) { + addComment(input: $input) { + operation { id } + } +} |