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

update_merge_request_lock.mutation.graphql « mutations « lock « components « sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 11eb3611006cb4a0d58f8cb7d739e6d7553d5960 (plain)
1
2
3
4
5
6
7
8
9
mutation updateMergeRequestLocked($input: MergeRequestSetLockedInput!) {
  mergeRequestSetLocked(input: $input) {
    mergeRequest {
      id
      discussionLocked
    }
    errors
  }
}