INTERFACE

Subscribable

Entities that can be subscribed to for web and email notifications.

link GraphQL Schema definition

1interface Subscribable {
2
3# Check if the viewer is able to change their subscription status for the
4# repository.
5viewerCanSubscribe: Boolean!
6
7# Identifies if the viewer is watching, not watching, or ignoring the repository.
8viewerSubscription: SubscriptionState!
9
10}