summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/graphql/board_list_create.mutation.graphql
blob: 3eb23f62940e23664065d9c0a9b675fa7642885a (plain)
1
2
3
4
5
6
7
8
9
10
#import "./board_list.fragment.graphql"

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