@valueflows/vf-graphql
Version:
Reference GraphQL implementation of the ValueFlows spec
40 lines (31 loc) • 681 B
JavaScript
// Generated by scripts/build.js - edit the *.gql file instead!
module.exports = `
##
#
# Process <> Plan API
#
# Augments Process records with the ability to be referenced in Plans.
#
# @package vf-graphql
# @since 2020-02-12
#
##
type Process {
"The process with its inputs and outputs is part of the plan."
plannedWithin: Plan
}
type Plan {
processes: [Process!]
}
##
# API call input and output types
##
input ProcessCreateParams {
"(\`Plan\`) The process with its inputs and outputs is part of the plan."
plannedWithin: ID
}
input ProcessUpdateParams {
"(\`Plan\`) The process with its inputs and outputs is part of the plan."
plannedWithin: ID
}
`