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
48 lines
1007 B
GraphQL
48 lines
1007 B
GraphQL
#import "../../Fragments/System.graphql"
|
|
|
|
query GetDestinationCityPage($locale: String!, $uid: String!) {
|
|
destination_city_page(uid: $uid, locale: $locale) {
|
|
title
|
|
system {
|
|
...System
|
|
created_at
|
|
updated_at
|
|
}
|
|
}
|
|
trackingProps: destination_city_page(locale: "en", uid: $uid) {
|
|
url
|
|
}
|
|
}
|
|
|
|
query GetDestinationCityPageRefs($locale: String!, $uid: String!) {
|
|
destination_city_page(locale: $locale, uid: $uid) {
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|
|
|
|
query GetDaDeEnUrlsDestinationCityPage($uid: String!) {
|
|
de: destination_city_page(locale: "de", uid: $uid) {
|
|
url
|
|
}
|
|
en: destination_city_page(locale: "en", uid: $uid) {
|
|
url
|
|
}
|
|
da: destination_city_page(locale: "da", uid: $uid) {
|
|
url
|
|
}
|
|
}
|
|
|
|
query GetFiNoSvUrlsDestinationCityPage($uid: String!) {
|
|
fi: destination_city_page(locale: "fi", uid: $uid) {
|
|
url
|
|
}
|
|
no: destination_city_page(locale: "no", uid: $uid) {
|
|
url
|
|
}
|
|
sv: destination_city_page(locale: "sv", uid: $uid) {
|
|
url
|
|
}
|
|
}
|