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

update_epic_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: 4a3090f383610d022573963446809dcfe77e9465 (plain)
1
2
3
4
5
6
7
8
9
10
11
mutation boardEpicSetSubscription($fullPath: ID!, $iid: ID!, $subscribedState: Boolean!) {
  updateIssuableSubscription: epicSetSubscription(
    input: { groupPath: $fullPath, iid: $iid, subscribedState: $subscribedState }
  ) {
    issuable: epic {
      id
      subscribed
    }
    errors
  }
}