@valueflows/vf-graphql
Version:
Reference GraphQL implementation of the ValueFlows spec
32 lines (25 loc) • 584 B
JavaScript
// Generated by scripts/build.js - edit the *.gql file instead!
module.exports = `
##
#
# Proposal <> Geolocation API
#
# Augments proposals with geospatial information.
#
# @package vf-graphql
# @since 2020-02-12
#
##
type Proposal {
"Location or area where the proposal is valid."
eligibleLocation: SpatialThing
}
input ProposalCreateParams {
"(\`SpatialThing\`) The location at which this proposal is eligible."
eligibleLocation: ID
}
input ProposalUpdateParams {
"(\`SpatialThing\`) The location at which this proposal is eligible."
eligibleLocation: ID
}
`