OBJECT

Plan

A logical collection of processes that constitute a body of planned work with defined deliverable(s).

link GraphQL Schema definition

  • type Plan {
  • # The time the plan was made.
  • created: DateTime
  • # The plan is able to be deleted or not.
  • deletable: Boolean
  • # The time the plan is expected to be complete.
  • due: DateTime
  • id: ID!
  • # Grouping around something to create a boundary or context, used for documenting,
  • # accounting, planning.
  • inScopeOf: [AccountingScope!]
  • independentDemands: [Commitment!]
  • # An informal or formal textual identifier for a plan. Does not imply uniqueness.
  • name: String
  • # A textual description or comment.
  • note: String
  • # Arguments
  • # filter: [Not documented]
  • processes(filter: planProcessSearchParams): [Process!]
  • # This plan refines a scenario, making it operational.
  • refinementOf: Scenario
  • }