mirror of
https://github.com/git-touch/git-touch
synced 2024-12-18 19:22:54 +01:00
11 lines
236 B
GraphQL
11 lines
236 B
GraphQL
mutation GhWatch($id: ID!, $state: SubscriptionState!) {
|
|
updateSubscription(input: { subscribableId: $id, state: $state }) {
|
|
subscribable {
|
|
__typename
|
|
... on Repository {
|
|
viewerSubscription
|
|
}
|
|
}
|
|
}
|
|
}
|