diff options
Diffstat (limited to 'webui/src/components')
5 files changed, 10 insertions, 10 deletions
diff --git a/webui/src/components/BugTitleForm/SetTitle.graphql b/webui/src/components/BugTitleForm/SetTitle.graphql index 9dc2d096..8477b1e2 100644 --- a/webui/src/components/BugTitleForm/SetTitle.graphql +++ b/webui/src/components/BugTitleForm/SetTitle.graphql @@ -1,5 +1,5 @@ -mutation setTitle($input: SetTitleInput!) { - setTitle(input: $input) { +mutation setTitle($input: BugSetTitleInput!) { + bugSetTitle(input: $input) { bug { id } diff --git a/webui/src/components/CloseBugButton/CloseBug.graphql b/webui/src/components/CloseBugButton/CloseBug.graphql index fc03d1f3..bfcb1a60 100644 --- a/webui/src/components/CloseBugButton/CloseBug.graphql +++ b/webui/src/components/CloseBugButton/CloseBug.graphql @@ -1,6 +1,6 @@ # Write your query or mutation here -mutation closeBug($input: CloseBugInput!) { - closeBug(input: $input) { +mutation closeBug($input: BugStatusCloseInput!) { + bugStatusClose(input: $input) { bug { id } 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 } diff --git a/webui/src/components/ReopenBugButton/OpenBug.graphql b/webui/src/components/ReopenBugButton/OpenBug.graphql index 12673e65..69f39058 100644 --- a/webui/src/components/ReopenBugButton/OpenBug.graphql +++ b/webui/src/components/ReopenBugButton/OpenBug.graphql @@ -1,5 +1,5 @@ -mutation openBug($input: OpenBugInput!) { - openBug(input: $input) { +mutation openBug($input: BugStatusOpenInput!) { + bugStatusOpen(input: $input) { bug { id } diff --git a/webui/src/components/ReopenBugWithCommentButton/ReopenBugWithComment.graphql b/webui/src/components/ReopenBugWithCommentButton/ReopenBugWithComment.graphql index 5258a1aa..30e0d206 100644 --- a/webui/src/components/ReopenBugWithCommentButton/ReopenBugWithComment.graphql +++ b/webui/src/components/ReopenBugWithCommentButton/ReopenBugWithComment.graphql @@ -1,5 +1,5 @@ -mutation AddCommentAndReopenBug($input: AddCommentAndReopenBugInput!) { - addCommentAndReopen(input: $input) { +mutation AddCommentAndReopenBug($input: BugAddCommentAndReopenInput!) { + bugAddCommentAndReopen(input: $input) { statusOperation { status } |