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