OBJECT

Schedule

The channel schedule.

link GraphQL Schema definition

1type Schedule {
2
3# The ID of the schedule.
4id: ID!
5
6# A period during which scheduled events temporarily cease.
7interruption: ScheduleInterruption
8
9# The next uncancelled segment of the schedule.
10nextSegment: ScheduleSegment
11
12# The segments after a specific date ordered by start time. This field can be
13# paginated and return segments across week boundaries.
14segmentList(first: Int, after: Cursor, options: ScheduleSegmentListInput): ScheduleSegmentListConnection
15
16# All segments for the specified week. If relativeDate isn't provided, the current
17# week is used.
18segments(
19utcOffsetMinutes: Int,
20startingWeekday: String,
21relativeDate: Time,
22includeFutureSegments: Boolean
23): [ScheduleSegment!]
24
25}