OBJECT

ForecastItem

link GraphQL Schema definition

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