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