OBJECT

ActivityKPIEntity

link GraphQL Schema definition

  • type ActivityKPIEntity {
  • # 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
  • # Appointment this KPI event relates to. Set when activity_id resolves to an
  • # Appointment; otherwise empty.
  • appointment: AppointmentEntity
  • # Task this KPI event relates to. Set when activity_id resolves to a Task;
  • # otherwise empty.
  • task: TaskEntity
  • # User who triggered the KPI event (e.g. created or completed the activity).
  • client: ClientEntity
  • # Activity owner at the time the KPI event occurred.
  • owner: ClientEntity
  • # Sales unit the triggering user belonged to at the time of the event.
  • unit: SalesUnitEntity
  • # Id of the appointment or task the KPI event relates to.
  • activityId: ID!
  • # Application context in which the KPI event was triggered (e.g. browser,
  • # automation, third-party integration).
  • applicationId: ID
  • # Id of the user who triggered the event.
  • clientId: ID
  • # KPI metric this event represents: ActivityCreate, ActivityCompleted.
  • kpi: ActivityKpiEnum!
  • # Id of the activity owner at the time of the event.
  • ownerId: ID
  • # Id of the sales unit.
  • unitId: 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!]!
  • }