INTERFACE
SiblingBoxInterface
link GraphQL Schema definition
- interface SiblingBoxInterface {
- # 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!]
- # Identifier of the lookup field that links this sibling box to its parent box;
- # set when the relation is defined through a specific lookup field.
- : UUID
- # How records in this sibling box relate to the parent box, either an aggregation
- # over related records or a predefined hardcoded relation.
- : SiblingBoxRelationType
- }