https://github.com/ghengeveld/graphql-geojson-demo
Demo GraphQL server for graphql-geojson
https://github.com/ghengeveld/graphql-geojson-demo
Last synced: 3 months ago
JSON representation
Demo GraphQL server for graphql-geojson
- Host: GitHub
- URL: https://github.com/ghengeveld/graphql-geojson-demo
- Owner: ghengeveld
- Created: 2016-11-06T13:20:54.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-06T13:22:09.000Z (over 8 years ago)
- Last Synced: 2025-03-24T20:21:41.709Z (4 months ago)
- Language: JavaScript
- Homepage: https://github.com/ghengeveld/graphql-geojson
- Size: 35.2 KB
- Stars: 9
- Watchers: 1
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-starred - ghengeveld/graphql-geojson-demo - Demo GraphQL server for graphql-geojson (others)
README
# graphql-geojson-demo
```bash
npm start
```GraphQL endpoint: http://localhost:8000/graphql
## Full query
```graphql
query {
point {
type
coordinates
}
multiPoint {
type
coordinates
}
lineString {
type
coordinates
}
multiLineString {
type
coordinates
}
polygon {
type
coordinates
}
multiPolygon {
type
coordinates
}
feature {
type
id
properties
geometry {
type
coordinates
}
}
featureCollection {
type
features {
type
properties
geometry {
type
coordinates
}
}
}
geometryCollection {
type
geometries {
type
coordinates
}
}
}
```