INPUT_OBJECT
CreateScheduleSegmentInput
The input to create a new schedule segment.
link GraphQL Schema definition
1 input CreateScheduleSegmentInput { 4 2 # The categories of the new segment. 3 : [ID!]! 7 5 # The duration of the segment in minutes. 6 : Int 10 8 # The start date and time of the first occurrence of the segment. 9 : Time 13 11 # The number of times the segment should repeat. If 1, this is a single segment. 12 : Int 16 14 # The ID of the schedule. 15 : ID! 19 17 # The start time of the new segment. Ignored for single segments. 18 : SegmentStartTimeInput 23 20 # The geographic timezone of the new segment defined by IANA; i.e. 21 # "America/Los_Angeles". 22 : String! 26 24 # The title of the new segment. 25 : String 27 }