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

issue_set_subscription.mutation.graphql « mutations « graphql « boards « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f383245ac2b827ba6e0b851515b2684c68b2054 (plain)
1
2
3
4
5
6
7
8
mutation issueSetSubscription($input: IssueSetSubscriptionInput!) {
  issueSetSubscription(input: $input) {
    issue {
      subscribed
    }
    errors
  }
}