UNPKG

@valueflows/vf-graphql

Version:

Reference GraphQL implementation of the ValueFlows spec

38 lines (29 loc) 1.13 kB
// Generated by scripts/build.js - edit the *.gql file instead! module.exports = ` ## # # Commitment <> ResourceSpecification indexes # # @package vf-graphql # @since 2022-05-27 # ## type Commitment { "The primary resource specification or definition of an existing or potential economic resource. A resource will have only one, as this specifies exactly what the resource is." resourceConformsTo: ResourceSpecification } type ResourceSpecification { commitments(first: Int, after: String, last: Int, before: String): CommitmentConnection } ## # API input and output types ## input CommitmentCreateParams { "(\`ResourceSpecification\`) The primary resource specification or definition of an existing or potential economic resource. A resource will have only one, as this specifies exactly what the resource is." resourceConformsTo: ID } input CommitmentUpdateParams { "(\`ResourceSpecification\`) The primary resource specification or definition of an existing or potential economic resource. A resource will have only one, as this specifies exactly what the resource is." resourceConformsTo: ID } `