OBJECT
EntitySettingsEntity
link GraphQL Schema definition
- type EntitySettingsEntity {
- # 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
- # Default column configuration applied to list views of this entity (which fields
- # are shown, their widths, frozen state, and whether to push the configuration to
- # existing users).
- : EntitySettingsDefaultListColumns!
- # For custom entities, the concrete API name of the entity these settings apply
- # to. Empty for built-in entities (where entity_name already identifies them).
- : String
- # True when the settings are published; false while they exist only as an
- # unpublished draft.
- : Boolean
- # Revision when entity was lastly changed.
- : Int
- # Name of the entity these settings apply to. For custom entities resolves to the
- # literal "CustomEntity" (see entity_api_name for the concrete API name).
- : EntityNameEnum!
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }