Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ghengeveld/graphql-geojson-demo
Demo GraphQL server for graphql-geojson
https://github.com/ghengeveld/graphql-geojson-demo
Last synced: 4 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 (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-06T13:22:09.000Z (about 8 years ago)
- Last Synced: 2024-08-01T12:32:03.705Z (6 months ago)
- Language: JavaScript
- Homepage: https://github.com/ghengeveld/graphql-geojson
- Size: 35.2 KB
- Stars: 9
- Watchers: 2
- 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
}
}
}
```