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

10 lines
191 B
GraphQL
Raw Normal View History

2021-12-11 22:18:48 +05:30
mutation updateIssuableConfidential($input: UpdateEpicInput!) {
2021-04-17 20:07:23 +05:30
issuableSetConfidential: updateEpic(input: $input) {
issuable: epic {
id
confidential
}
errors
}
}