debian-mirror-gitlab/app/assets/javascripts/boards/graphql/board_list_create.mutation.graphql
2021-04-17 20:07:23 +05:30

10 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
}
}