summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/graphql/board_list_create.mutation.graphql
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
  }
}