Skip to content

Instantly share code, notes, and snippets.

@maka-io
Created February 8, 2018 14:45
Show Gist options
  • Save maka-io/8052d08fede16b4ae122cfe95e529240 to your computer and use it in GitHub Desktop.
Save maka-io/8052d08fede16b4ae122cfe95e529240 to your computer and use it in GitHub Desktop.
const typeDef = `
type FeatureCollection {
type: String!
Features: [Feature]!
}
type Feature {
type: String!
geometry: Geometry!
properties: Properties
}
type Geometry {
type: String!
coordinates: [Float]!
}
type Properties {
name: String
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment