@valueflows/vf-graphql
Version:
Reference GraphQL implementation of the ValueFlows spec
34 lines (26 loc) • 1.06 kB
JavaScript
// Generated by scripts/build.js - edit the *.gql file instead!
module.exports = `
##
#
# ResourceSpecification <> Claim query edges
#
# @package vf-graphql
# @since 2022-06-16
#
##
type Claim {
"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
}
input ClaimCreateParams {
"(\`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 ClaimUpdateParams {
"(\`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
}
type ResourceSpecification {
claims(first: Int, after: String, last: Int, before: String): ClaimConnection
}
`