OBJECT

DashboardTile

link GraphQL Schema definition

  • type DashboardTile {
  • # Identifier of the tile.
  • tileId: UUID!
  • # Record type the tile aggregates over (e.g. Opportunity, Lead, Activity).
  • tileSourceEntity: EntityNameEnum!
  • # API name of the source record type when it is a custom entity; null for built-in
  • # entities.
  • tileSourceEntityApiName: String
  • # Identifier of the field aggregated by the tile; null when the aggregation
  • # function is a record count.
  • tileAggregationField: UUID
  • # Aggregation applied to the source records: Count, Sum, Average, Min, or Max.
  • tileAggregationFunction: AggregationOperator!
  • # Identifier of the lookup relation field to traverse before aggregating, when
  • # aggregating a field on a related record.
  • tileAggregationLookupFieldId: UUID
  • # Configuration for highlighting records changed within a recent period.
  • tileChangedRecords: DashboardTileChangedRecords!
  • # Ordered color rules applied to the tile value; the first matching rule sets the
  • # tile color.
  • tileConditionalFormatting: [DashboardTileConditionalFormatting!]
  • # Filter conditions limiting which source records are aggregated by the tile.
  • tileFilter: FieldFilter!
  • }