Feat/SW-1449 destination page * feat(SW-1449): Added destination country page * feat(SW-1449): added destination city page Approved-by: Fredrik Thorsson Approved-by: Matilda Landström
19 lines
365 B
GraphQL
19 lines
365 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
|
|
}
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|