gitlab/app/assets/javascripts/boards/graphql/board_list_create.mutation.graphql
2021-11-08 04:55:59 +00:00

11 lines
275 B
GraphQL

#import "./board_list.fragment.graphql"
mutation createBoardList($boardId: BoardID!, $backlog: Boolean, $labelId: LabelID) {
boardListCreate(input: { boardId: $boardId, backlog: $backlog, labelId: $labelId }) {
list {
...BoardListFragment
}
errors
}
}