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