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: 37abe5ddf3c8055c7982cbf53ddea8dd09c26182 (plain)
1
2
3
4
5
6
7
8
9
mutation toggleWIPStatus($projectPath: ID!, $iid: String!, $wip: Boolean!) {
  mergeRequestSetWip(input: { projectPath: $projectPath, iid: $iid, wip: $wip }) {
    mergeRequest {
      title
      workInProgress
    }
    errors
  }
}