UNPKG

@valueflows/vf-graphql

Version:

Reference GraphQL implementation of the ValueFlows spec

38 lines (29 loc) 582 B
// Generated by scripts/build.js - edit the *.gql file instead! module.exports = ` ## # # Plan <> Scenario API # # @package vf-graphql # @since 2022-05-27 # ## type Plan { "This plan refines a scenario, making it operational." refinementOf: Scenario } type Scenario { plans: [Plan!] } ## # API call input and output types ## input PlanCreateParams { "(\`Scenario\`) This plan refines a scenario, making it operational." refinementOf: ID } input PlanUpdateParams { "(\`Scenario\`) This plan refines a scenario, making it operational." refinementOf: ID } `