Welcome to mirror list, hosted at ThFree Co, Russian Federation.

update_issue_subscription.mutation.graphql « queries « sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 81891fb601f4593ac34b689babcb13b767415819 (plain)
1
2
3
4
5
6
7
8
9
10
11
mutation issueSetSubscription($fullPath: ID!, $iid: String!, $subscribedState: Boolean!) {
  updateIssuableSubscription: issueSetSubscription(
    input: { projectPath: $fullPath, iid: $iid, subscribedState: $subscribedState }
  ) {
    issuable: issue {
      id
      subscribed
    }
    errors
  }
}