OBJECT

RecipeResource

Specifies the resource as part of a recipe, for use in planning from recipe.

link GraphQL Schema definition

  • type RecipeResource {
  • id: ID!
  • # The uri to an image relevant to the entity, such as a photo, diagram, etc.
  • image: URI
  • # An informal or formal textual identifier for a recipe resource. Does not imply
  • # uniqueness.
  • name: String!
  • # A textual description or comment.
  • note: String
  • # References one or more concepts in a common taxonomy or other classification
  • # scheme for purposes of categorization or grouping.
  • resourceClassifiedAs: [URI!]
  • # The primary resource specification or definition of an existing or potential
  • # economic resource. A resource will have only one, as this specifies exactly what
  • # the resource is.
  • resourceConformsTo: ResourceSpecification
  • # Defines if any resource of that type can be freely substituted for any other
  • # resource of that type when used, consumed, traded, etc.
  • substitutable: Boolean
  • # The unit used for use action on this resource or work action in the recipe.
  • unitOfEffort: Unit
  • # The unit of inventory used for this resource in the recipe.
  • unitOfResource: Unit
  • }