@valueflows/vf-graphql
Version:
Reference GraphQL implementation of the ValueFlows spec
26 lines (20 loc) • 461 B
JavaScript
// Generated by scripts/build.js - edit the *.gql file instead!
module.exports = `
##
#
# Process <> Scenario API
#
# Augments Process records with the ability to be referenced in Scenarios.
#
# @package vf-graphql
# @since 2020-02-12
#
##
type Process {
"The process with its inputs and outputs is part of the scenario."
nestedIn: Scenario
}
type Scenario {
processes(first: Int, after: String, last: Int, before: String): ProcessConnection
}
`