11 lines
311 B
GraphQL
11 lines
311 B
GraphQL
mutation projectIssueSetSubscription($fullPath: ID!, $iid: String!, $subscribedState: Boolean!) {
|
|
updateIssuableSubscription: issueSetSubscription(
|
|
input: { projectPath: $fullPath, iid: $iid, subscribedState: $subscribedState }
|
|
) {
|
|
issuable: issue {
|
|
id
|
|
subscribed
|
|
}
|
|
errors
|
|
}
|
|
}
|