OBJECT

DashboardTarget

link GraphQL Schema definition

  • type DashboardTarget {
  • # Visual style used to render progress toward the goal: Radial, Gauge, Target, or
  • # ProgressBar.
  • targetType: DashboardTargetTypeEnum!
  • # Goal definition the actual value is compared against.
  • target: DashboardTargetTab
  • # Record type whose records are aggregated to produce the actual value (e.g.
  • # Opportunity, Lead, Activity).
  • targetSourceEntity: EntityNameEnum!
  • # API name of the source record type when it is a custom entity; null for built-in
  • # entities.
  • targetSourceEntityApiName: String
  • # Identifier of the field aggregated to produce the actual value; null when the
  • # aggregation function is a record count.
  • targetAggregationField: UUID
  • # Aggregation applied to the source records: Count, Sum, Average, Min, or Max.
  • targetAggregationFunction: AggregationOperator!
  • # Filter conditions limiting which source records contribute to the actual value.
  • targetFilter: FieldFilter!
  • # Identifier of the lookup relation field to traverse before aggregating, when
  • # aggregating a field on a related record.
  • targetAggregationLookupFieldId: UUID
  • # Color of the progress indicator, as a packed RGB integer.
  • targetColor: Int
  • }