INPUT_OBJECT

ScenarioCreateParams

link GraphQL Schema definition

  • input ScenarioCreateParams {
  • # (`ScenarioDefinition`) The scenario definition for this scenario, for example
  • # yearly budget.
  • definedAs: ID!
  • # The beginning date/time of the scenario, often the beginning of an accounting
  • # period.
  • hasBeginning: DateTime
  • # The ending date/time of the scenario, often the end of an accounting period.
  • hasEnd: DateTime
  • # Grouping around something to create a boundary or context, used for documenting,
  • # accounting, planning.
  • inScopeOf: [ID!]
  • # An informal or formal textual identifier for a scenario. Does not imply
  • # uniqueness.
  • name: String!
  • # A textual description or comment.
  • note: String
  • # (`Scenario`) This scenario refines another scenario, often as time moves closer
  • # or for more detail.
  • refinementOf: ID
  • }