OBJECT

OpportunityForecastView

link GraphQL Schema definition

  • type OpportunityForecastView {
  • # Identifier of the value field the forecast amounts are calculated from.
  • field: ID!
  • # Period range and granularity the forecast is calculated over.
  • period: ForecastPeriodOption!
  • # Owners (users) included in the forecast, with their performance series.
  • owner: [ForecastOwner]!
  • # Value columns shown in the forecast table (for example WonValueCurrentPeriod,
  • # OpenValueWeighted, WonVsForecast).
  • column: [ForecastColumnsType!]!
  • # Identifier of the field rows are grouped by. Null applies no grouping.
  • groupBy: ID
  • # When true, rows can be expanded into a drilldown table of contributing records.
  • isDrilldownEnabled: Boolean!
  • # List of fields id to display as drilldown table
  • drilldownFields: [ID!]!
  • # Quota configuration the forecast values are measured against.
  • quota: OpportunityForecastQuota!
  • # When true, displays the forecast graph above the table.
  • showGraph: Boolean!
  • # Coarser period the forecast rows are rolled up into (Monthly, Quarterly, or
  • # Yearly). Null keeps the base period granularity.
  • rollUpPeriod: ForecastPeriodKind
  • # When true, rows with no forecast values are hidden.
  • hideEmptyRows: Boolean!
  • # Height of the forecast graph, in pixels.
  • graphHeight: Int
  • }