OBJECT

TaskRecurrenceEntity

link GraphQL Schema definition

  • type TaskRecurrenceEntity {
  • # Tells if the entity instance is protected against delete (Entities that need to
  • # be present in the system at any time). Delete action still may fail if entity is
  • # deletable, due some other additional validations.
  • isDeleteProtected: Boolean!
  • # Unique identifier of entity.
  • id: ID!
  • # Specifies if the entity is considered deleted.
  • isDeleted: Boolean
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # Relation to single entity instance. Target entity is re-used and not deleted
  • # on de-association.
  • #
  • # Examples:
  • #
  • # Opportunity.owner -> Client, the Client is reused for many opportunities.
  • #
  • # Account.picture -> CloudObject, the CloudObject can be reused on many accounts.
  • #
  • task: TaskEntity
  • # 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.
  • day: 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.
  • dayOfWeek: Int
  • # Date information. The last date when no more other items should be created.
  • endDate: 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.
  • month: 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.
  • occurEvery: 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.
  • occurrencesCount: Int
  • # Date information. The effective start date of recurrence, which means each
  • # next recurrence must be on or after this date.
  • startDate: Date!
  • # Relation to single entity instance.
  • taskId: ID!
  • # Field whose values are strictly defined with an enumeration of values.
  • type: 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.
  • week: DateWeekEnum
  • # Revision when entity was lastly changed.
  • revision: Int
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }