Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • valueflows/vf-schemas/vf-graphql
  • Connoropolous/vf-graphql
2 results
Show changes
Commits on Source (2)
type RecipeResource {
revision(revisionId: ID!): RecipeResource
meta: RecordMeta!
}
type RecipeProcess {
revision(revisionId: ID!): RecipeProcess
meta: RecordMeta!
......
......@@ -10,16 +10,16 @@
##
type RecipeFlow {
"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
"The resource definition referenced by this flow in the recipe."
resourceConformsTo: ResourceSpecification!
}
input RecipeFlowCreateParams {
"(`ResourceSpecification`) 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: ID
"(`ResourceSpecification`) The resource definition referenced by this flow in the recipe."
resourceConformsTo: ID!
}
input RecipeFlowUpdateParams {
"(`ResourceSpecification`) 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."
"(`ResourceSpecification`) The resource definition referenced by this flow in the recipe."
resourceConformsTo: ID
}
......@@ -25,9 +25,6 @@ type RecipeFlow {
"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
"The resource definition referenced by this flow in the recipe."
resourceConformsTo: ResourceSpecification!
"Relates a process input or output to a verb, such as consume, produce, work, modify, etc."
action: Action!
......@@ -138,9 +135,6 @@ input RecipeFlowCreateParams {
"(`Action`) Relates a process input or output to a verb, such as consume, produce, work, modify, etc."
action: ID!
"(`ResourceSpecification`) The resource definition referenced by this flow in the recipe."
resourceConformsTo: ID!
"The amount and unit of the economic resource counted or inventoried."
resourceQuantity: IMeasure
......@@ -169,9 +163,6 @@ input RecipeFlowUpdateParams {
"(`Action`) Relates a process input or output to a verb, such as consume, produce, work, modify, etc."
action: ID
"(`ResourceSpecification`) The resource definition referenced by this flow in the recipe."
resourceConformsTo: ID
"The amount and unit of the economic resource counted or inventoried."
resourceQuantity: IMeasure
......