OBJECT
InterfacePreviewEntity
link GraphQL Schema definition
- type InterfacePreviewEntity {
- # 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
- # Account type the interface preview applies to.
- : AccountTypeEntity
- # Appointment type the interface preview applies to.
- : AppointmentTypeEntity
- # Contact type the interface preview applies to.
- : ContactTypeEntity
- # Custom entity type the interface preview applies to.
- : CustomEntityTypeEntity
- # Lead type the interface preview applies to.
- : LeadTypeEntity
- # Opportunity type the interface preview applies to.
- : OpportunityTypeEntity
- # Product type the interface preview applies to.
- : ProductTypeEntity
- # Project type the interface preview applies to.
- : ProjectTypeEntity
- # Quote type the interface preview applies to.
- : QuoteTypeEntity
- # Task type the interface preview applies to.
- : TaskTypeEntity
- # Id of the account type.
- : ID
- # Id of the appointment type.
- : ID
- # Ordered ids of fields shown on the record's compact card view.
- : [UUID!]!
- # Chart configurations shown in the preview, each linked to a related entity (e.g.
- # recent activities, related contacts, comments).
- : [InterfacePreviewChart!]!
- # Id of the contact type.
- : ID
- # Id of the custom entity type.
- : ID
- # Tab configurations shown on the record's detail screen (Detail tab plus
- # related-entity and lookup tabs).
- : [InterfaceDetailTab!]!
- # Widget configurations shown on the record's detail screen sidebar (e.g. Status,
- # KPIs).
- : [InterfaceDetailWidget!]!
- # Ordered ids of fields shown in the record's preview pane.
- : [UUID!]!
- # Id of the lead type.
- : ID
- # Id of the opportunity type.
- : ID
- # Id of the product type.
- : ID
- # Id of the project type.
- : ID
- # Id of the quote type.
- : ID
- # Layout-customization settings for the preview (e.g.
- # is_layout_customization_enabled).
- : InterfacePreviewCustomSettings!
- # Id of the task type.
- : ID
- # True when the interface preview is published; false while it exists only as an
- # unpublished draft.
- : Boolean
- # Revision when entity was lastly changed.
- : Int
- # Id of the type the interface preview is configured for, derived from whichever
- # of the per-entity-type relations is set.
- : UUID!
- # For custom entities, the API name of the targeted custom entity. Empty when the
- # preview targets a built-in entity (use entity_type to identify it).
- : String
- # Entity kind the interface preview applies to (Account, Lead, Opportunity,
- # Contact, Task, Appointment, Project, Quote, CustomEntity, or Product). Derived
- # from whichever of the per-entity-type relations is set.
- : BaseEntityTypeEnum!
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }