INPUT_OBJECT

CreateScheduleAvailabilityMutationInput

The input object that defines the fields for the createScheduleAvailability mutation.

link GraphQL Schema definition

  • input CreateScheduleAvailabilityMutationInput {
  • # A descriptive name.
  • name: String!
  • # The start date for this `ScheduleAvailability`.
  • start_date: Date!
  • # Whether or not this `ScheduleAvailability` creates or removes availability.
  • available: Boolean!
  • # Whether this repeats forever or not.
  • infinite_repetitions: Boolean!
  • # The number of times this repeats.
  • repetitions: Int
  • # The number of weeks between repetitions.
  • weeks_between_repetitions: Int!
  • # The ID of a `Geofence`.
  • geofence_id: Int64Bit
  • # IDs of `User`s.
  • user_ids: [Int64Bit]
  • # IDs of `JobType`s.
  • job_type_ids: [Int64Bit]
  • # A note about this entity.
  • note: NoteMutationInput
  • }

link Require by