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

board_list_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: f78a21baa7ffd39feee0c951bf20d6189b2f2369 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#import "ee_else_ce/boards/graphql/board_list.fragment.graphql"

mutation CreateBoardList(
  $boardId: BoardID!
  $backlog: Boolean
  $labelId: LabelID
  $milestoneId: MilestoneID
  $assigneeId: UserID
) {
  boardListCreate(
    input: {
      boardId: $boardId
      backlog: $backlog
      labelId: $labelId
      milestoneId: $milestoneId
      assigneeId: $assigneeId
    }
  ) {
    list {
      ...BoardListFragment
    }
    errors
  }
}