git-touch-android-ios-app/lib/graphql/gh_watch.graphql

11 lines
236 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 {
2020-02-06 06:53:43 +01:00
__typename
2020-01-20 07:18:45 +01:00
... on Repository {
viewerSubscription
}
}
}
}