OBJECT

FieldSequenceEntity

link GraphQL Schema definition

  • type FieldSequenceEntity {
  • # 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!
  • hasDraft: 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
  • # Optional filter restricting which records this sequence applies to. Empty means
  • # the sequence applies to all records.
  • filter: JSONString
  • # Pattern template used to generate auto-numbered values (e.g.
  • # "{prefix}{year}-{####}").
  • pattern: String!
  • # Identifier grouping all sequences (across entity types) that share the same
  • # auto-numbering pattern.
  • sequenceSetId: ID!
  • # Position of this sequence within its sequence set; sequences are evaluated in
  • # this order, the first whose filter matches is used.
  • sortOrder: Int
  • # True when the sequence is published; false while it exists only as an
  • # unpublished draft.
  • isPublished: Boolean
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }