debian-mirror-gitlab/app/assets/javascripts/sidebar/queries/update_issue_confidential.mutation.graphql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
209 B
GraphQL
Raw Normal View History

2020-07-28 23:09:34 +05:30
mutation updateIssueConfidential($input: IssueSetConfidentialInput!) {
2021-04-17 20:07:23 +05:30
issuableSetConfidential: issueSetConfidential(input: $input) {
issuable: issue {
id
2020-07-28 23:09:34 +05:30
confidential
}
2020-10-24 23:57:45 +05:30
errors
2020-07-28 23:09:34 +05:30
}
}