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

board_list_update.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: b474c9acb93059295c0877177423ab0aeed2335c (plain)
1
2
3
4
5
6
7
8
9
10
#import "./board_list.fragment.graphql"

mutation UpdateBoardList($listId: ID!, $position: Int, $collapsed: Boolean) {
  updateBoardList(input: { listId: $listId, position: $position, collapsed: $collapsed }) {
    list {
      ...BoardListFragment
    }
    errors
  }
}