@valueflows/vf-graphql
Version:
Reference GraphQL implementation of the ValueFlows spec
40 lines (31 loc) • 773 B
JavaScript
// Generated by scripts/build.js - edit the *.gql file instead!
module.exports = `
##
#
# Process <> ProcessSpecification API
#
# Enables the classification of Processes using specifications for them
#
# @package vf-graphql
# @since 2022-05-27
#
##
type Process {
"The definition or specification for a process."
basedOn: ProcessSpecification
}
type ProcessSpecification {
conformingProcesses(first: Int, after: String, last: Int, before: String): ProcessConnection
}
##
# API call input and output types
##
input ProcessCreateParams {
"(\`ProcessSpecification\`) The definition or specification for a process."
basedOn: ID
}
input ProcessUpdateParams {
"(\`ProcessSpecification\`) The definition or specification for a process."
basedOn: ID
}
`