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

board_update.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: 90de7713ff334b24476bd4e7996a825bacfb4f81 (plain)
1
2
3
4
5
6
7
8
9
10
#import "ee_else_ce/boards/graphql/board_scope.fragment.graphql"

mutation UpdateBoard($input: UpdateBoardInput!) {
  updateBoard(input: $input) {
    board {
      ...BoardScopeFragment
    }
    errors
  }
}