mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
11 lines
203 B
JavaScript
11 lines
203 B
JavaScript
import gql from 'graphql-tag'
|
|
|
|
export const queryLocations = () => gql`
|
|
query ($place: String!, $lang: String!) {
|
|
queryLocations(place: $place, lang: $lang) {
|
|
place_name
|
|
id
|
|
}
|
|
}
|
|
`
|