OBJECT

RecipeFlow

The specification of a resource inflow to, or outflow from, a recipe process.

link GraphQL Schema definition

  • type RecipeFlow {
  • # Relates a process input or output to a verb, such as consume, produce, work,
  • # modify, etc.
  • action: Action!
  • # The amount and unit of the work or use or citation effort-based action. This is
  • # often a time duration, but also could be cycle counts or other measures of
  • # effort or usefulness.
  • effortQuantity: Measure
  • id: ID!
  • # A textual description or comment.
  • note: String
  • # The resource definition referenced by this flow in the recipe.
  • recipeFlowResource: RecipeResource
  • # Relates an input flow to its process in a recipe.
  • recipeInputOf: RecipeProcess
  • # Relates an output flow to its process in a recipe.
  • recipeOutputOf: RecipeProcess
  • # The amount and unit of the economic resource counted or inventoried.
  • resourceQuantity: Measure
  • }