INPUT_OBJECT
CreateTaskRecurrenceInput
link GraphQL Schema definition
- input CreateTaskRecurrenceInput {
- String :
- Boolean :
- # Last modification time.
- DateTime :
- # Creation time.
- DateTime :
- # Field whose values are strictly defined with an enumeration of values. The day
- # of the month. This setting is applicable only for
- # RecurrenceTypeEnum.MonthlyRelative and RecurrenceTypeEnum.YearlyRelative.
- DateDayEnum :
- # Bit Flag field, with limited combination of integer values.
- #
- # Options:
- # Sunday = 1 (0b0000001)
- # Monday = 2 (0b0000010)
- # Tuesday = 4 (0b0000100)
- # Wednesday = 8 (0b0001000)
- # Thursday = 16 (0b0010000)
- # Friday = 32 (0b0100000)
- # Saturday = 64 (0b1000000) The days of week in bit mask, number where every bit
- # means one day (e.g. 0010001 = every Monday and Friday), bit 0 is Monday. This
- # setting is applicable only for RecurrenceTypeEnum.Weekly,
- # RecurrenceTypeEnum.MonthlyAbsolute, RecurrenceTypeEnum.YearlyAbsolute.
- Int :
- # Date information. The last date when no more other items should be created.
- Date :
- # Field whose values are strictly defined with an enumeration of values. The
- # number of month this setting is applicable only for
- # RecurrenceTypeEnum.YearlyAbsolute and RecurrenceTypeEnum.YearlyRelative.
- DateMonthEnum :
- # Generic field wrapping sqlalchemy column, configurable by constructor.
- #
- # Good for one-of fields / generated fields.
- #
- # The number of units of a given recurrence type between occurrences according
- # to RecurrenceTypeEnum.
- Int :
- # Whole natural number. The number of remaining occurrences. Each time a new
- # one is created, it decreases. When item is set to 1, only last one can be
- # created. If it is set to 0, recurrence is stopped. If -1, no limits are
- # applied.
- Int :
- # Date information. The effective start date of recurrence, which means each
- # next recurrence must be on or after this date.
- Date! :
- # Relation to single entity instance.
- ID! :
- # Field whose values are strictly defined with an enumeration of values.
- RecurrenceTypeEnum :
- # Field whose values are strictly defined with an enumeration of values. The week
- # of month. This setting is applicable only for
- # RecurrenceTypeEnum.MonthlyAbsolute and RecurrenceTypeEnum.YearlyAbsolute.
- DateWeekEnum :
- # Revision when entity was lastly changed.
- Int :
- }