@valueflows/vf-graphql
Version:
Reference GraphQL implementation of the ValueFlows spec
24 lines (18 loc) • 658 B
JavaScript
// Generated by scripts/build.js - edit the *.gql file instead!
module.exports = `
##
#
# Commitment <> ProcessSpecification query edges
#
# @package vf-graphql
# @since 2022-06-16
#
##
type Commitment {
"References the ProcessSpecification of the last process the economic resource went through. Stage is used when the last process is important for finding proper resources, such as where the publishing process wants only documents that have gone through the editing process."
stage: ProcessSpecification
}
type ProcessSpecification {
commitmentsRequiringStage(first: Int, after: String, last: Int, before: String): CommitmentConnection
}
`