OBJECT

DashboardKpiCustomDefinition

link GraphQL Schema definition

  • type DashboardKpiCustomDefinition {
  • # Record type the custom KPI aggregates over (e.g. Opportunity, Lead, Activity).
  • sourceEntity: EntityNameEnum!
  • # API name of the source record type when it is a custom entity; null for built-in
  • # entities.
  • sourceEntityApiName: String
  • # Identifier of the field aggregated by the KPI; null when the aggregation
  • # function is a record count.
  • aggregationField: UUID
  • # Identifier of the lookup relation field to traverse before aggregating, when
  • # aggregating a field on a related record.
  • aggregationLookupFieldId: UUID
  • # Aggregation applied to the source records: Count, Sum, Average, Min, or Max.
  • aggregationFunction: AggregationOperator!
  • }