From 57e7147021e38b847213d4dc7f0e0bf0b022850d Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Wed, 28 Aug 2024 11:43:42 +0200 Subject: graphql: properly namespace Bug to make space for other entities (#1254) Also: use gqlgen directives to help the type auto-binding Missing: - namespace mutations - adapt the webUI queries --- .../components/CloseBugWithCommentButton/CloseBugWithComment.graphql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'webui/src/components/CloseBugWithCommentButton/CloseBugWithComment.graphql') diff --git a/webui/src/components/CloseBugWithCommentButton/CloseBugWithComment.graphql b/webui/src/components/CloseBugWithCommentButton/CloseBugWithComment.graphql index 66c84c35..aaa36184 100644 --- a/webui/src/components/CloseBugWithCommentButton/CloseBugWithComment.graphql +++ b/webui/src/components/CloseBugWithCommentButton/CloseBugWithComment.graphql @@ -1,5 +1,5 @@ -mutation AddCommentAndCloseBug($input: AddCommentAndCloseBugInput!) { - addCommentAndClose(input: $input) { +mutation AddCommentAndCloseBug($input: BugAddCommentAndCloseInput!) { + bugAddCommentAndClose(input: $input) { statusOperation { status } -- cgit