INTERFACE

ScheduleInterface

link GraphQL Schema definition

  • interface ScheduleInterface {
  • # Date and time the schedule runs once. Set for a one-time schedule; left empty
  • # for recurring schedules that use the time-of-day and day fields instead.
  • date: DateTime
  • # 0 - 1439
  • timeOfDay: Int
  • # 1 = Monday, 7 = Sunday
  • dayOfWeek: [Int!]
  • # 1 - 31
  • dayOfMonth: [Int!]
  • }