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.
  • 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
  • accountType: AccountTypeEntity
  • appointmentType: AppointmentTypeEntity
  • contactType: ContactTypeEntity
  • customEntityType: CustomEntityTypeEntity
  • leadType: LeadTypeEntity
  • opptyType: OpportunityTypeEntity
  • projectType: ProjectTypeEntity
  • quoteType: QuoteTypeEntity
  • taskType: TaskTypeEntity
  • # Relation to single entity instance.
  • accountTypeId: ID
  • # Relation to single entity instance.
  • appointmentTypeId: ID
  • # Field containing json.
  • charts: [InterfacePreviewChart!]!
  • # Relation to single entity instance.
  • contactTypeId: ID
  • # Relation to single entity instance.
  • customEntityTypeId: ID
  • # Field containing json.
  • detailTabs: [InterfaceDetailTab!]!
  • # Field containing json.
  • detailWidgets: [InterfaceDetailWidget!]!
  • fieldIds: [UUID!]!
  • # Relation to single entity instance.
  • leadTypeId: ID
  • # Relation to single entity instance.
  • opptyTypeId: ID
  • # Relation to single entity instance.
  • projectTypeId: ID
  • # Relation to single entity instance.
  • quoteTypeId: ID
  • # Relation to single entity instance.
  • taskTypeId: ID
  • isPublished: Boolean
  • # Revision when entity was lastly changed.
  • revision: Int
  • entityTypeId: UUID!
  • entityType: BaseEntityTypeEnum!
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }