Skip to content

Latest commit

 

History

History
 
 

geojson

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

GeoJSON Object Schema

GraphQL schema

Notes:

Implementations:

Example of queries

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