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

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