OBJECT

ActivityRelationEntity

link GraphQL Schema definition

  • type ActivityRelationEntity {
  • # 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 the activity is linked to, or empty when not linked to an account.
  • account: AccountEntity
  • # Appointment side of the link. Set when activity_id resolves to an Appointment;
  • # otherwise empty.
  • appointment: AppointmentEntity
  • # Task side of the link. Set when activity_id resolves to a Task; otherwise empty.
  • task: TaskEntity
  • # Contact the activity is linked to, or empty when not linked to a contact.
  • contact: ContactEntity
  • # Custom entity record the activity is linked to, or empty.
  • customEntity: CustomEntityEntity
  • # Lead the activity is linked to. Set when lead_oppty_id resolves to a Lead;
  • # otherwise empty.
  • lead: LeadEntity
  • # Opportunity the activity is linked to. Set when lead_oppty_id resolves to an
  • # Opportunity; otherwise empty.
  • oppty: OpportunityEntity
  • # Project the activity is linked to, or empty when not linked to a project.
  • project: ProjectEntity
  • # Project objective the activity advances, or empty.
  • projectObjective: ProjectObjectiveEntity
  • # Quote the activity is linked to, or empty when not linked to a quote.
  • quote: QuoteEntity
  • # Id of the linked account.
  • accountId: ID
  • # Id of the appointment or task on this link.
  • activityId: ID!
  • # Id of the linked contact.
  • contactId: ID
  • # Id of the linked custom entity record.
  • customEntityId: ID
  • # Id of the lead or opportunity the activity is linked to, or empty when not
  • # linked.
  • leadOpptyId: ID
  • # Id of the linked project.
  • projectId: ID
  • # Id of the project objective.
  • projectObjectiveId: ID
  • # Id of the linked quote.
  • quoteId: ID
  • # Display order of the activity within its project objective. Required only when
  • # project_id is set.
  • sortOrder: Int
  • # 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!]!
  • }