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

update_issue_confidential.mutation.graphql « queries « 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: 2459aa346c9bdf3f9a4e40f8b6509a9c58a8a6fa (plain)
1
2
3
4
5
6
7
mutation updateIssueConfidential($input: IssueSetConfidentialInput!) {
  issueSetConfidential(input: $input) {
    issue {
      confidential
    }
  }
}