Feat/SW-1451 country page filtering and sorting * feat(SW-1451): implemented sorting and filtering on country pages * feat(SW-1451): Renamed hotel-data to destination-data because of its multi-purpose use * feat(SW-1451): Now filtering after change of url instead of inside the store after submit Approved-by: Fredrik Thorsson
22 lines
412 B
GraphQL
22 lines
412 B
GraphQL
#import "../../Fragments/Metadata.graphql"
|
|
#import "../../Fragments/System.graphql"
|
|
|
|
query GetDestinationCountryPageMetadata($locale: String!, $uid: String!) {
|
|
destination_country_page(locale: $locale, uid: $uid) {
|
|
web {
|
|
breadcrumbs {
|
|
title
|
|
}
|
|
seo_metadata {
|
|
...Metadata
|
|
}
|
|
}
|
|
destination_settings {
|
|
country
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|