OBJECT
PivotTable
link GraphQL Schema definition
- type PivotTable implements ReportStructureItem {
- # Unique identifier of this item within the report structure.
- : ID!
- # ID of a parent report structure, if ID is NULL this identifies root item, no
- # more than one root item is allowed
- : ID
- # Order of the item on the within same parent
- : Int!
- # Entity type whose records the pivot reports on, such as Account, Lead or
- # Opportunity.
- : EntityNameEnum!
- # API name of the entity for this pivot; set for custom entities to identify which
- # one is used.
- : String
- # List of possible entity subtypes of entity_type, if entity type is abstract you
- # can supply with entity_types of all children of abstract entity
- : [EntitySubtypeItem!]
- # A field used for calculation, this field is applied only if main box , or pivot
- # entity is Opportunity, or LeadOppty
- : ID
- # Filter and view settings for the pivot report.
- : PivotReportTabsInterface!
- }
link Require by
This element is not required by anyone