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