OBJECT

CustomEntityRelationDataEntity

link GraphQL Schema definition

  • type CustomEntityRelationDataEntity {
  • # 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!
  • # Unique identifier of entity.
  • id: ID!
  • # Specifies if the entity is considered deleted.
  • isDeleted: Boolean
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • account1: AccountEntity
  • account2: AccountEntity
  • appointment1: AppointmentEntity
  • task1: TaskEntity
  • appointment2: AppointmentEntity
  • task2: TaskEntity
  • client1: ClientEntity
  • client2: ClientEntity
  • contact1: ContactEntity
  • contact2: ContactEntity
  • customEntity1: CustomEntityEntity
  • customEntity2: CustomEntityEntity
  • # Relation to single entity instance. Target entity is re-used and not deleted
  • # on de-association.
  • #
  • # Examples:
  • #
  • # Opportunity.owner -> Client, the Client is reused for many opportunities.
  • #
  • # Account.picture -> CloudObject, the CloudObject can be reused on many accounts.
  • #
  • customEntityRelation: CustomEntityRelationEntity
  • lead1: LeadEntity
  • oppty1: OpportunityEntity
  • lead2: LeadEntity
  • oppty2: OpportunityEntity
  • opptyProductRelation1: OpptyProductRelationEntity
  • opptyProductRelation2: OpptyProductRelationEntity
  • product1: ProductEntity
  • product2: ProductEntity
  • project1: ProjectEntity
  • project2: ProjectEntity
  • quote1: QuoteEntity
  • quote2: QuoteEntity
  • # Relation to single entity instance.
  • account1Id: ID
  • # Relation to single entity instance.
  • account2Id: ID
  • # Relation to single abstract entity instance.
  • #
  • # E.g. Relation to Lead/Oppty
  • #
  • activity1Id: ID
  • # Relation to single abstract entity instance.
  • #
  • # E.g. Relation to Lead/Oppty
  • #
  • activity2Id: ID
  • # Relation to single entity instance.
  • client1Id: ID
  • # Relation to single entity instance.
  • client2Id: ID
  • # Relation to single entity instance.
  • contact1Id: ID
  • # Relation to single entity instance.
  • contact2Id: ID
  • # Relation to single entity instance.
  • customEntity1Id: ID
  • # Relation to single entity instance.
  • customEntity2Id: ID
  • # Relation to single entity instance.
  • customEntityRelationId: ID!
  • # Boolean value.
  • isPrimary: Boolean
  • # Relation to single abstract entity instance.
  • #
  • # E.g. Relation to Lead/Oppty
  • #
  • leadOppty1Id: ID
  • # Relation to single abstract entity instance.
  • #
  • # E.g. Relation to Lead/Oppty
  • #
  • leadOppty2Id: ID
  • # Relation to single entity instance.
  • opptyProductRelation1Id: ID
  • # Relation to single entity instance.
  • opptyProductRelation2Id: ID
  • # Relation to single entity instance.
  • product1Id: ID
  • # Relation to single entity instance.
  • product2Id: ID
  • # Relation to single entity instance.
  • project1Id: ID
  • # Relation to single entity instance.
  • project2Id: ID
  • # Relation to single entity instance.
  • quote1Id: ID
  • # Relation to single entity instance.
  • quote2Id: ID
  • # Revision when entity was lastly changed.
  • revision: Int
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }