9 lines
191 B
GraphQL
9 lines
191 B
GraphQL
mutation updateIssuableConfidential($input: UpdateEpicInput!) {
|
|
issuableSetConfidential: updateEpic(input: $input) {
|
|
issuable: epic {
|
|
id
|
|
confidential
|
|
}
|
|
errors
|
|
}
|
|
}
|