1
0
mirror of https://github.com/git-touch/git-touch synced 2024-12-19 19:54:54 +01:00
git-touch-android-ios-app/lib/graphql/gh_watch.graphql

10 lines
219 B
GraphQL
Raw Normal View History

2020-01-20 07:18:45 +01:00
mutation GhWatch($id: ID!, $state: SubscriptionState!) {
updateSubscription(input: { subscribableId: $id, state: $state }) {
subscribable {
... on Repository {
viewerSubscription
}
}
}
}