OBJECT

ScheduleSegment

The segment of a schedule.

link GraphQL Schema definition

1type ScheduleSegment {
2
3# The UTC date when the segment is no longer cancelled.
4cancelledUntil: Time
5
6# The game categories tied to this segment.
7categories: [Game!]
8
9# The end time of the segment.
10endAt: Time
11
12# The start date and time of the first occurrence of the segment.
13firstOccurrenceDate: Time
14
15# Whether or not the current user has a reminder set for the segment.
16hasReminder: Boolean!
17
18# The ID of the segment.
19id: ID!
20
21# If this segment is cancelled or not.
22isCancelled: Boolean!
23
24# A count of users who have a reminder set, available only to the schedule owner.
25reminderCount: Int
26
27# The number of times the segment should repeat. If 1, this is a single segment.
28repeatEndsAfterCount: Int
29
30# The start time of the segment.
31startAt: Time!
32
33# The title of the segment.
34title: String!
35
36}