INTERFACE
ReportBoxInterface
link GraphQL Schema definition
- interface ReportBoxInterface {
- # Unique identifier of the box within the report structure.
- : ID!
- # A field used for calculation, this field is applied only if box entity is
- # Opportunty or LeadOppty
- : ID
- # Entity type whose records this box reports on, such as Account, Lead or
- # Opportunity.
- : EntityNameEnum!
- # API name of the entity for this box; 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!]
- }