UNPKG

@valueflows/vf-graphql

Version:

Reference GraphQL implementation of the ValueFlows spec

36 lines (28 loc) 634 B
// Generated by scripts/build.js - edit the *.gql file instead! module.exports = ` ## # # Intent <> Geolocation API # # Augments records of Intent events with geospatial information. # # @package vf-graphql # @since 2020-02-12 # ## type Intent { "The place where an intent would occur. Usually mappable." atLocation: SpatialThing } type SpatialThing { intents: [Intent!] } input IntentCreateParams { "(\`SpatialThing\`) The place where an intent occurs. Usually mappable." atLocation: ID } input IntentUpdateParams { "(\`SpatialThing\`) The place where an intent occurs. Usually mappable." atLocation: ID } `