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: 3abe09079c732dde399b0ac51261d8d3b20308cc (plain)
1
2
3
4
5
6
7
8
9
mutation UpdateBoard($input: UpdateBoardInput!) {
  updateBoard(input: $input) {
    board {
      id
      webPath
    }
    errors
  }
}