Ulf Gebhardt c0b25040c3
- frontend implementation location query
- remove mapboxtoken from .env template
2021-02-02 02:48:31 +01:00

10 lines
201 B
JavaScript

import gql from 'graphql-tag'
export const queryLocations = () => gql`
query($place: String!, $lang: String!) {
queryLocations(place: $place, lang: $lang) {
place_name
id
}
}
`