@valueflows/vf-graphql
Version:
Reference GraphQL implementation of the ValueFlows spec
36 lines (28 loc) • 664 B
JavaScript
// Generated by scripts/build.js - edit the *.gql file instead!
module.exports = `
##
#
# Commitment <> Geolocation API
#
# Augments records of Commitments with geospatial information.
#
# @package vf-graphql
# @since 2020-02-12
#
##
type Commitment {
"The place where a commitment occurs. Usually mappable."
atLocation: SpatialThing
}
type SpatialThing {
commitments: [Commitment!]
}
input CommitmentCreateParams {
"(\`SpatialThing\`) The place where an commitment occurs. Usually mappable."
atLocation: ID
}
input CommitmentUpdateParams {
"(\`SpatialThing\`) The place where an commitment occurs. Usually mappable."
atLocation: ID
}
`