OBJECT

CallEntity

link GraphQL Schema definition

  • type CallEntity {
  • # 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
  • account: AccountEntity
  • # 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.
  • #
  • caller: ClientEntity
  • client: ClientEntity
  • contact: ContactEntity
  • lead: LeadEntity
  • oppty: OpportunityEntity
  • opptyProductRelation: OpptyProductRelationEntity
  • product: ProductEntity
  • # Relation to single entity instance.
  • accountId: ID
  • # Relation to single entity instance.
  • callerId: ID!
  • # Relation to single entity instance.
  • clientId: ID
  • # Relation to single entity instance.
  • contactId: ID
  • # Relation to single abstract entity instance.
  • #
  • # E.g. Relation to Lead/Oppty
  • #
  • leadOpptyId: ID
  • # Relation to single entity instance.
  • opptyProductRelationId: ID
  • # Phone number.
  • phoneNumber: String
  • # Relation to single entity instance.
  • productId: ID
  • # Generic field wrapping sqlalchemy column, configurable by constructor.
  • #
  • # Good for one-of fields / generated fields.
  • #
  • twilioCallLogId: ID!
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }