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

update_issue_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: cb9ee6abc9b1b372c46b565c83c8bdbfd1e22e85 (plain)
1
2
3
4
5
6
7
8
9
mutation updateIssueLocked($input: IssueSetLockedInput!) {
  issueSetLocked(input: $input) {
    issue {
      id
      discussionLocked
    }
    errors
  }
}