All Release Notes
Added `geoLocation` field to the `Channel` GraphQL type
8 October 2019
Enhancement
GraphQL
- [GraphQL API] Added the following types to the GraphQL schema:
Geometry,Point. - [GraphQL API] Changed the
Channeltype:- Added the
geoLocationfield to theChanneltype.
- Added the
Introduced the following changes to the GraphQL schema (in SDL format):
extend type Channel {geoLocation: Geometry}interface Geometry {type: String!}type Point implements Geometry {coordinates: [Float!]!type: String!}