* feat(SW-2152): Added improved meta descriptions for hotel pages * feat(SW-2152): Added improved meta descriptions for destination pages * feat(SW-2152): Refactoring metadata description functionality * feat(SW-2152): Improved truncate function and added cities check to country page description Approved-by: Michael Zetterberg Approved-by: Matilda Landström
30 lines
534 B
GraphQL
30 lines
534 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
|
|
}
|
|
images {
|
|
image
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|