11 lines
300 B
GraphQL
11 lines
300 B
GraphQL
mutation boardEpicSetSubscription($fullPath: ID!, $iid: ID!, $subscribedState: Boolean!) {
|
|
updateIssuableSubscription: epicSetSubscription(
|
|
input: { groupPath: $fullPath, iid: $iid, subscribedState: $subscribedState }
|
|
) {
|
|
issuable: epic {
|
|
id
|
|
subscribed
|
|
}
|
|
errors
|
|
}
|
|
}
|