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

board_list_create.mutation.graphql « queries « boards « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dcfe69222a0d0f810a5a571a3459c42e7e6bea96 (plain)
1
2
3
4
5
6
7
8
9
10
#import "./board_list.fragment.graphql"

mutation CreateBoardList($boardId: BoardID!, $backlog: Boolean) {
  boardListCreate(input: { boardId: $boardId, backlog: $backlog }) {
    list {
      ...BoardListFragment
    }
    errors
  }
}