@valueflows/vf-graphql
Version:
Reference GraphQL implementation of the ValueFlows spec
32 lines (25 loc) • 673 B
JavaScript
// Generated by scripts/build.js - edit the *.gql file instead!
module.exports = `
##
#
# Recipe <> ResourceSpecification API
#
# Extends Recipes with ResourceSpecification
#
# @package vf-graphql
# @since 2022-05-27
#
##
type RecipeFlow {
"The resource definition referenced by this flow in the recipe."
resourceConformsTo: ResourceSpecification!
}
input RecipeFlowCreateParams {
"(\`ResourceSpecification\`) The resource definition referenced by this flow in the recipe."
resourceConformsTo: ID!
}
input RecipeFlowUpdateParams {
"(\`ResourceSpecification\`) The resource definition referenced by this flow in the recipe."
resourceConformsTo: ID
}
`