OBJECT
DashboardTile
link GraphQL Schema definition
- type DashboardTile {
- # Identifier of the tile.
- : UUID!
- # Record type the tile aggregates over (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 by the tile; null when the aggregation
- # function is a record count.
- : UUID
- # Aggregation applied to the source records: Count, Sum, Average, Min, or Max.
- : AggregationOperator!
- # Identifier of the lookup relation field to traverse before aggregating, when
- # aggregating a field on a related record.
- : UUID
- # Configuration for highlighting records changed within a recent period.
- : DashboardTileChangedRecords!
- # Ordered color rules applied to the tile value; the first matching rule sets the
- # tile color.
- : [DashboardTileConditionalFormatting!]
- # Filter conditions limiting which source records are aggregated by the tile.
- : FieldFilter!
- }