INPUT_OBJECT
CreateForecastInput
link GraphQL Schema definition
- input CreateForecastInput {
- # Optional client-supplied identifier passed on a mutation input and echoed back
- # unchanged on its payload, so a client can correlate the response with its
- # request (Relay convention).
- : String
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Free-text description shown alongside the forecast.
- : String
- # Name of the entity and its default text representation.
- : String!
- # Id of the owning user.
- : ID!
- # Forecast configuration as a JSON object conforming to the BetterForecastSchema
- # type: currency, period (year + quarter/month), breakdown levels (type), items
- # and quotas, and column layout. Validated on write. Full structure:
- # https://graphql.api-doc.pipelinersales.com/latest/graphql/space/betterforecastschema.doc.html
- : JSONString!
- # 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
- # Revision when entity was lastly changed.
- : Int
- # Users granted shared access to this forecast (custom share mode).
- : [UUID!]!
- # Sales units granted shared access to this forecast (custom share mode).
- : [UUID!]!
- }