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).
  • clientMutationId: String
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # Free-text description shown alongside the forecast.
  • description: String
  • # Name of the entity and its default text representation.
  • name: String!
  • # Id of the owning user.
  • ownerId: 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
  • settings: JSONString!
  • # Field whose values are strictly defined with an enumeration of values.
  • shareMode: ShareModeEnum
  • # Bit flags fine-tuning sharing behavior (e.g. allow editing for shared users).
  • shareModeParams: Int
  • # Revision when entity was lastly changed.
  • revision: Int
  • # Users granted shared access to this forecast (custom share mode).
  • sharedClients: [UUID!]!
  • # Sales units granted shared access to this forecast (custom share mode).
  • sharedUnits: [UUID!]!
  • }

link Require by