INPUT_OBJECT

UpdateScheduleSegmentInput

The input to update a schedule segment.

link GraphQL Schema definition

1input UpdateScheduleSegmentInput {
4
2# The categories of the segment.
3categories: [ID!]
7
5# The duration of the segment in minutes.
6durationMinutes: Int
10
8# The start date and time of the first occurrence of the segment.
9firstOccurrenceDate: Time
13
11# Whether the segment is cancelled.
12isCancelled: Boolean
16
14# The schedule id.
15scheduleID: ID!
19
17# The segment id to update.
18segmentID: ID!
22
20# The start time of the segment.
21start: SegmentStartTimeInput
25
23# The geographic timezone of the segment.
24timezone: String
28
26# The title of the segment.
27title: String
29}