8 October 2019
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!
}