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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
311 B
GraphQL
Raw Normal View History

2021-12-11 22:18:48 +05:30
mutation projectIssueSetSubscription($fullPath: ID!, $iid: String!, $subscribedState: Boolean!) {
2021-06-08 01:23:25 +05:30
updateIssuableSubscription: issueSetSubscription(
input: { projectPath: $fullPath, iid: $iid, subscribedState: $subscribedState }
) {
issuable: issue {
id
subscribed
}
errors
}
}