summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/graphql
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/boards/graphql')
-rw-r--r--app/assets/javascripts/boards/graphql/board_create.mutation.graphql5
-rw-r--r--app/assets/javascripts/boards/graphql/board_update.mutation.graphql5
2 files changed, 6 insertions, 4 deletions
diff --git a/app/assets/javascripts/boards/graphql/board_create.mutation.graphql b/app/assets/javascripts/boards/graphql/board_create.mutation.graphql
index b3ea79d6443..42e164f4f3c 100644
--- a/app/assets/javascripts/boards/graphql/board_create.mutation.graphql
+++ b/app/assets/javascripts/boards/graphql/board_create.mutation.graphql
@@ -1,8 +1,9 @@
+#import "ee_else_ce/boards/graphql/board_scope.fragment.graphql"
+
mutation createBoard($input: CreateBoardInput!) {
createBoard(input: $input) {
board {
- id
- webPath
+ ...BoardScopeFragment
}
errors
}
diff --git a/app/assets/javascripts/boards/graphql/board_update.mutation.graphql b/app/assets/javascripts/boards/graphql/board_update.mutation.graphql
index 3abe09079c7..90de7713ff3 100644
--- a/app/assets/javascripts/boards/graphql/board_update.mutation.graphql
+++ b/app/assets/javascripts/boards/graphql/board_update.mutation.graphql
@@ -1,8 +1,9 @@
+#import "ee_else_ce/boards/graphql/board_scope.fragment.graphql"
+
mutation UpdateBoard($input: UpdateBoardInput!) {
updateBoard(input: $input) {
board {
- id
- webPath
+ ...BoardScopeFragment
}
errors
}