INPUT_OBJECT

CreateScheduleSegmentInput

The input to create a new schedule segment.

link GraphQL Schema definition

1input CreateScheduleSegmentInput {
4
2# The categories of the new 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# The number of times the segment should repeat. If 1, this is a single segment.
12repeatEndsAfterCount: Int
16
14# The ID of the schedule.
15scheduleID: ID!
19
17# The start time of the new segment. Ignored for single segments.
18start: SegmentStartTimeInput
23
20# The geographic timezone of the new segment defined by IANA; i.e.
21# "America/Los_Angeles".
22timezone: String!
26
24# The title of the new segment.
25title: String
27}