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

update_issue_confidential.mutation.graphql « mutations « confidential « components « sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5caf5f6b55508564a0f1e4db33f805a259523f50 (plain)
1
2
3
4
5
6
7
8
mutation updateIssueConfidential($input: IssueSetConfidentialInput!) {
  issueSetConfidential(input: $input) {
    issue {
      confidential
    }
    errors
  }
}