OBJECT

Point

A type that describes cartesian coordinate system.

link GraphQL Schema definition

1type Point {
2
3# Latitude
4x: Float!
5
6# Longitude
7y: Float!
8
9}