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