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.
  • 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
  • # 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).
  • defaultListColumns: 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).
  • entityApiName: String
  • # True when the settings are published; false while they exist only as an
  • # unpublished draft.
  • isPublished: Boolean
  • # Revision when entity was lastly changed.
  • revision: 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).
  • entityName: EntityNameEnum!
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }