OBJECT
Subscription
link GraphQL Schema definition
1 type Subscription { 2 3 ID! : 4 5 ID! : 6 7 SubscriptionObjectType! : 8 9 SubscriptionFrequency! : 10 11 DateTime : 12 13 DateTime : 14 15 Boolean! : 16 17 # The ID of the object on which this subscription is set, 18 # such as a watchlist ID. 19 ID! : 20 21 # Scheduled time of day 22 Time : 23 24 # Time zone of the scheduled time 25 String : 26 27 # Scheduled day of the week 28 DayOfWeek : 29 30 JSONData : 31 32 SubscriptionContact! : 33 34 String : 35 36 }
link Required by
- MutationMutations are used to modify data. Each mutation takes an input that contains the data necessary to create or update the data in question.
- QueryQueries are used to retrieve data. If you're new to our API, try the `me` query to explore the information you have access to. Hit `ctrl-space` at any time to activate field completion hints, and mouse over a field or parameter to see its documentation.
- Watchlist