OBJECT
EntityEntity
link GraphQL Schema definition
- type EntityEntity {
- # 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!
- # Unique identifier of entity.
- : ID!
- # Stable identifier of the entity (e.g. "Account", "Lead", "Opportunity").
- : String
- # Internal storage identifier for the entity. Read-only.
- : String
- # Internal storage identifier for the entity's custom-field data. Read-only.
- : String
- # Internal storage identifier for the entity's data relation rows. Read-only.
- : String
- # Id of the field used as the default display label for records of this entity.
- : ID!
- # For sub-entities (e.g. Lead/Opportunity sharing a LeadOppty parent), the entity
- # name of the parent abstract entity. Empty for stand-alone entities.
- : ID!
- # Kind of the entity in the platform: business entity, system schema, custom
- # entity, etc.
- : Int!
- # Display order used to sort entities in pickers and navigation lists; lower
- # values appear first.
- : Int!
- # True when records of this entity can be linked to multiple records of the same
- # other entity through the same relation.
- : Boolean
- # True when records of this entity support drafts (changes go through a draft
- # before being published).
- : Boolean!
- # Access scope of records of this entity: shared across the entire space, scoped
- # to a sales unit, or owner-only.
- : Int!
- # Numeric icon identifier used to render the entity in the UI.
- : Int!
- # True when the entity is marked as deleted (soft-delete). Read-only at the
- # entity-metadata level.
- : Boolean
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Optional space-level configuration for the entity (e.g. UI/feature flags). Empty
- # when no overrides are set.
- : JSONString
- # Display name of the entity in singular form (e.g. "Account").
- : String
- # Display name of the entity in plural form (e.g. "Accounts").
- : String
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }