Welcome to mirror list, hosted at ThFree Co, Russian Federation.

board_create.mutation.graphql « graphql « boards « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 42e164f4f3c9bafcdd0e424766730bfc2c609557 (plain)
1
2
3
4
5
6
7
8
9
10
#import "ee_else_ce/boards/graphql/board_scope.fragment.graphql"

mutation createBoard($input: CreateBoardInput!) {
  createBoard(input: $input) {
    board {
      ...BoardScopeFragment
    }
    errors
  }
}