@valueflows/vf-graphql
Version:
Reference GraphQL implementation of the ValueFlows spec
41 lines (32 loc) • 702 B
JavaScript
// Generated by scripts/build.js - edit the *.gql file instead!
module.exports = `
##
#
# Planning <> Agreement API
#
# Augments planning records with properties that link events to Agreements
# which have influenced the planning process.
#
# @package vf-graphql
# @since 2020-02-12
#
##
type Commitment {
"This commitment is part of the exchange agreement."
clauseOf: Agreement
}
type Agreement {
commitments: [Commitment!]
}
##
# API input and output types
##
input CommitmentCreateParams {
"(\`Agreement\`) This commitment is part of the agreement."
clauseOf: ID
}
input CommitmentUpdateParams {
"(\`Agreement\`) This commitment is part of the agreement."
clauseOf: ID
}
`