## # # 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 }