feat(SW-1452): Added filtering and sorting to destination city pages * feat(SW-1452): Added filtering and sorting to destination city pages * feat(SW-1452): Added temporary component for country pages to avoid Context issues Approved-by: Matilda Landström
27 lines
503 B
GraphQL
27 lines
503 B
GraphQL
#import "../../Fragments/Metadata.graphql"
|
|
#import "../../Fragments/System.graphql"
|
|
|
|
query GetDestinationCityPageMetadata($locale: String!, $uid: String!) {
|
|
destination_city_page(locale: $locale, uid: $uid) {
|
|
web {
|
|
breadcrumbs {
|
|
title
|
|
}
|
|
seo_metadata {
|
|
...Metadata
|
|
}
|
|
}
|
|
destination_settings {
|
|
city_denmark
|
|
city_finland
|
|
city_germany
|
|
city_norway
|
|
city_poland
|
|
city_sweden
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|