feat(SW-1453): added city listing component * feat(SW-1453): added city listing component Approved-by: Christian Andolf Approved-by: Fredrik Thorsson
29 lines
551 B
GraphQL
29 lines
551 B
GraphQL
#import "../../Fragments/System.graphql"
|
|
|
|
query GetDestinationCityListData($locale: String!, $cityIdentifier: String!) {
|
|
all_destination_city_page(
|
|
where: {
|
|
OR: [
|
|
{ destination_settings: { city_sweden: $cityIdentifier } }
|
|
{ destination_settings: { city_denmark: $cityIdentifier } }
|
|
]
|
|
}
|
|
locale: $locale
|
|
) {
|
|
items {
|
|
heading
|
|
preamble
|
|
images {
|
|
image
|
|
}
|
|
experiences {
|
|
destination_experiences
|
|
}
|
|
url
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|
|
}
|