1.0.0 • Published 8 years ago
graphql-geojson v1.0.0
graphql-geojson
GraphQL schema object types for GeoJSON
Installation
npm i -S graphql-geojson
or with Yarn:
yarn add graphql-geojson
Usage
import { GraphQLObjectType, GraphQLSchema } from 'graphql'
import { PointObject } from 'graphql-geojson'
export default new GraphQLSchema({
query: new GraphQLObjectType({
name: 'Query',
fields: () => ({
point: {
type: PointObject,
resolve: () => ({
type: 'Point',
coordinates: [-105.01621, 39.57422],
}),
},
}),
}),
})
Then you can query it like this:
query {
point {
type
coordinates
}
}
Demo
An example GraphQL server implementation is available here: https://github.com/ghengeveld/graphql-geojson-demo
1.0.0
8 years ago