OBJECT
ForecastEntity
link GraphQL Schema definition
- type ForecastEntity {
- # Tells if the entity instance is protected against delete (Entities that need to
- # be present in the system at any time). Delete action still may fail if entity is
- # deletable, due some other additional validations.
- : Boolean!
- # Unique identifier of entity.
- : ID!
- # Specifies if the entity is considered deleted.
- : Boolean
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Field whose value is summed when computing forecast amounts (typically a
- # currency field on Opportunity).
- : FieldEntity
- # User who owns the forecast.
- : ClientEntity
- # Pipeline whose opportunities the forecast aggregates.
- : PipelineEntity
- # Free-text description shown alongside the forecast.
- : String
- # Last date covered by the forecast period.
- : Date!
- # Id of the aggregation field.
- : ID!
- # Name of the entity and its default text representation.
- : String!
- # Id of the owning user.
- : ID!
- # Id of the pipeline.
- : ID!
- # Forecast configuration including period, breakdown levels, items and quotas.
- # Stored as a JSON document.
- : BetterForecastSchema!
- # Field whose values are strictly defined with an enumeration of values.
- : ShareModeEnum
- # Bit flags fine-tuning sharing behavior (e.g. allow editing for shared users).
- : Int
- # First date covered by the forecast period.
- : Date!
- # Order of forecast levels as a JSON array (e.g. ["Units", "Users"]). Each level
- # adds a grouping dimension to the breakdown.
- : JSONString!
- # Revision when entity was lastly changed.
- : Int
- # For multi-level forecasts (a "type" path like Pipeline/Step/Owner), the last
- # element of the path identifying the current breakdown axis.
- : ForecastType!
- # Users granted shared access to this forecast (custom share mode).
- : [ClientEntity!]!
- # Sales units granted shared access to this forecast (custom share mode).
- : [SalesUnitEntity!]!
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- # Arguments
- # period: [Not documented]
- (: PeriodOptionParams): Int!
- }