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

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

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