INTERFACE
Subscribable
Entities that can be subscribed to for web and email notifications.
link GraphQL Schema definition
1 interface Subscribable { 2 3 # Check if the viewer is able to change their subscription status for the 4 # repository. 5 Boolean! : 6 7 # Identifies if the viewer is watching, not watching, or ignoring the repository. 8 SubscriptionState! : 9 10 }