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.
- : Boolean!
- # Unique identifier of entity.
- : ID!
- # Specifies if the entity is considered deleted.
- : Boolean
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Appointment this KPI event relates to. Set when activity_id resolves to an
- # Appointment; otherwise empty.
- : AppointmentEntity
- # Task this KPI event relates to. Set when activity_id resolves to a Task;
- # otherwise empty.
- : TaskEntity
- # User who triggered the KPI event (e.g. created or completed the activity).
- : ClientEntity
- # Activity owner at the time the KPI event occurred.
- : ClientEntity
- # Sales unit the triggering user belonged to at the time of the event.
- : SalesUnitEntity
- # Id of the appointment or task the KPI event relates to.
- : ID!
- # Application context in which the KPI event was triggered (e.g. browser,
- # automation, third-party integration).
- : ID
- # Id of the user who triggered the event.
- : ID
- # KPI metric this event represents: ActivityCreate, ActivityCompleted.
- : ActivityKpiEnum!
- # Id of the activity owner at the time of the event.
- : ID
- # Id of the sales unit.
- : ID!
- # Revision when entity was lastly changed.
- : Int
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }