GraphQL schema
- Specifications available at: http://geojson.org/geojson-spec.html
- Test data taken from: http://geojsonlint.com
{
data {
type
... Geometry
... Feature
... FeatureCollection
... GeometryCollection
}
fragment Geometry on GeoJSONGeometryInterface {
type
coordinates
}
fragment Feature on GeoJSONFeature {
geometry {
... Geometry
}
}
fragment FeatureCollection on GeoJSONFeatureCollection {
features {
... Feature
}
}
fragment GeometryCollection on GeoJSONGeometryCollection {
geometries {
... Geometry
}
}