aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages/bug/EditCommentForm.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/pages/bug/EditCommentForm.graphql')
-rw-r--r--webui/src/pages/bug/EditCommentForm.graphql9
1 files changed, 9 insertions, 0 deletions
diff --git a/webui/src/pages/bug/EditCommentForm.graphql b/webui/src/pages/bug/EditCommentForm.graphql
index c7047e6e..4765b75c 100644
--- a/webui/src/pages/bug/EditCommentForm.graphql
+++ b/webui/src/pages/bug/EditCommentForm.graphql
@@ -1,7 +1,16 @@
+#import "./MessageCommentFragment.graphql"
+#import "./MessageCreateFragment.graphql"
+
mutation EditComment($input: EditCommentInput!) {
editComment(input: $input) {
bug {
id
+ timeline {
+ comments: nodes {
+ ...Create
+ ...AddComment
+ }
+ }
}
}
}