11 lines
274 B
GraphQL
11 lines
274 B
GraphQL
mutation UpdateBoard($id: ID!, $hideClosedList: Boolean, $hideBacklogList: Boolean) {
|
|
updateBoard(
|
|
input: { id: $id, hideClosedList: $hideClosedList, hideBacklogList: $hideBacklogList }
|
|
) {
|
|
board {
|
|
id
|
|
hideClosedList
|
|
hideBacklogList
|
|
}
|
|
}
|
|
}
|