summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/graphql/board.mutation.graphql
blob: ef2b81a7939d0388329944765cc89d4513d47711 (plain)
1
2
3
4
5
6
7
8
9
10
11
mutation UpdateBoard($id: ID!, $hideClosedList: Boolean, $hideBacklogList: Boolean) {
  updateBoard(
    input: { id: $id, hideClosedList: $hideClosedList, hideBacklogList: $hideBacklogList }
  ) {
    board {
      id
      hideClosedList
      hideBacklogList
    }
  }
}