OBJECT

ProcessNodeSchedule

link GraphQL Schema definition

  • type ProcessNodeSchedule {
  • # Delay before the action runs, expressed in the chosen unit. Positive values
  • # schedule after the reference point, negative values before it.
  • offset: Int!
  • # Unit of the offset: minutes, hours, days, working days, weeks or months.
  • offsetUnit: ProcessNodeScheduleUnitEnum!
  • # Date field on the triggered record that the offset is measured from. When
  • # omitted, the offset is measured from the time the action is reached.
  • offsetFieldId: UUID
  • # Fixed date and time at which the action runs, used instead of an offset.
  • date: DateTime
  • }