22 lines
403 B
GraphQL
22 lines
403 B
GraphQL
query GetLocationsUrls($locale: String!) {
|
|
hotels: all_hotel_page(locale: $locale) {
|
|
items {
|
|
url
|
|
id: hotel_page_id
|
|
}
|
|
}
|
|
cities: all_destination_city_page {
|
|
items {
|
|
url
|
|
id: destination_settings {
|
|
sv: city_sweden
|
|
pl: city_poland
|
|
no: city_norway
|
|
de: city_germany
|
|
fi: city_finland
|
|
da: city_denmark
|
|
}
|
|
}
|
|
}
|
|
}
|