Welcome to mirror list, hosted at ThFree Co, Russian Federation.

board.mutation.graphql « graphql « boards « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
    }
  }
}