debian-mirror-gitlab/app/assets/javascripts/boards/graphql/board_list_create.mutation.graphql

13 lines
393 B
GraphQL
Raw Normal View History

2021-04-17 20:07:23 +05:30
#import "./board_list.fragment.graphql"
2020-11-24 15:15:51 +05:30
2021-12-11 22:18:48 +05:30
mutation createBoardList($boardId: BoardID!, $backlog: Boolean, $labelId: LabelID) {
2021-04-17 20:07:23 +05:30
boardListCreate(input: { boardId: $boardId, backlog: $backlog, labelId: $labelId }) {
2022-01-26 12:08:38 +05:30
# We have ID in a deeply nested fragment
# eslint-disable-next-line @graphql-eslint/require-id-when-available
2020-11-24 15:15:51 +05:30
list {
...BoardListFragment
}
errors
}
}