OBJECT
ForecastItem
link GraphQL Schema definition
- type ForecastItem {
- # Id of this forecast row.
- : ID!
- # Id of the parent row in the breakdown hierarchy; empty for top-level rows.
- : ID
- # Id of the entity (user, sales unit, product, product category or account) this
- # row represents.
- : UUID!
- # Type of the entity this row represents.
- : EntityNameEnum!
- # Per-period value and quota entries for this row.
- : [ForecastItemValue!]!
- # Whether this row is included in forecast totals.
- : Boolean!
- # How this row's quota is split across its child rows (e.g. evenly).
- : OpportunityForecastQuotaSplitType!
- }