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

toggle_wip.mutation.graphql « queries « vue_merge_request_widget « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cfaa198d5167bd8a16c8479b4720a1295283e067 (plain)
1
2
3
4
5
6
7
8
9
10
mutation toggleWIPStatus($projectPath: ID!, $iid: String!, $wip: Boolean!) {
  mergeRequestSetWip(input: { projectPath: $projectPath, iid: $iid, wip: $wip }) {
    mergeRequest {
      mergeableDiscussionsState
      title
      workInProgress
    }
    errors
  }
}