Skip to content

Instantly share code, notes, and snippets.

@ddkino
Last active March 26, 2019 15:02
Show Gist options
  • Select an option

  • Save ddkino/4f701a09493b734d912418c45fe595de to your computer and use it in GitHub Desktop.

Select an option

Save ddkino/4f701a09493b734d912418c45fe595de to your computer and use it in GitHub Desktop.
schema.graphql
type Filter {
dateMax: String
dateMin: String
first: Int
}
type Geojson {
type: String
coordinates: [Float!]!
}
type ProgrammesSeloger {
_id: ID!
price: Int
geojson: Geojson
}
type Query {
programmesselogerByFilter(filter: Filter): [ProgrammesSeloger!]!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment