fix(SW-1754): Fix rate limit issue on Destination Overview Page * fix(SW-1754): Fix rate limit issue on Destination Overview Page Approved-by: Matilda Landström
33 lines
821 B
GraphQL
33 lines
821 B
GraphQL
#import "../../Fragments/System.graphql"
|
|
|
|
query GetDestinationCityListData($locale: String!, $cityIdentifier: String!) {
|
|
all_destination_city_page(
|
|
where: {
|
|
OR: [
|
|
{ destination_settings: { city_denmark: $cityIdentifier } }
|
|
{ destination_settings: { city_finland: $cityIdentifier } }
|
|
{ destination_settings: { city_germany: $cityIdentifier } }
|
|
{ destination_settings: { city_norway: $cityIdentifier } }
|
|
{ destination_settings: { city_poland: $cityIdentifier } }
|
|
{ destination_settings: { city_sweden: $cityIdentifier } }
|
|
]
|
|
}
|
|
locale: $locale
|
|
) {
|
|
items {
|
|
heading
|
|
preamble
|
|
images {
|
|
image
|
|
}
|
|
experiences {
|
|
destination_experiences
|
|
}
|
|
url
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|
|
}
|