OBJECT
DashboardGrid
link GraphQL Schema definition
- type DashboardGrid {
- # Filter conditions limiting which records are listed in the grid.
- : FieldFilter!
- # Record type listed in the grid (e.g. Opportunity, Lead, Account).
- : EntityNameEnum!
- # API name of the source record type when it is a custom entity; null for built-in
- # entities.
- : String
- # Ordered columns shown in the grid, each identifying a field and its display
- # options.
- : [GridColumnsOutput!]!
- # Identifier of the field the grid rows are sorted by.
- : ID!
- # Sort direction applied to gridSortBy: Asc or Desc.
- : SortOrder!
- # When true, a totals row is shown summarizing the grid columns.
- : Boolean!
- # When true, the grid is limited to the first gridTopRecords rows.
- : Boolean!
- # Maximum number of rows shown when gridShowTopRecordsOnly is true.
- : Int
- }