123 lines
2.6 KiB
GraphQL
123 lines
2.6 KiB
GraphQL
#import "../Fragments/Refs/System.graphql"
|
|
|
|
#import "../Fragments/PageLink/AccountPageLink.graphql"
|
|
#import "../Fragments/PageLink/ContentPageLink.graphql"
|
|
#import "../Fragments/PageLink/HotelPageLink.graphql"
|
|
#import "../Fragments/PageLink/LoyaltyPageLink.graphql"
|
|
|
|
#import "../Fragments/Refs/ContentPage/ContentPage.graphql"
|
|
#import "../Fragments/Refs/HotelPage/HotelPage.graphql"
|
|
#import "../Fragments/Refs/LoyaltyPage/LoyaltyPage.graphql"
|
|
#import "../Fragments/Refs/MyPages/AccountPage.graphql"
|
|
|
|
#import "../Fragments/Footer/AppDownloads.graphql"
|
|
#import "../Fragments/Footer/SocialMedia.graphql"
|
|
|
|
query GetFooter($locale: String!) {
|
|
all_footer(limit: 1, locale: $locale) {
|
|
items {
|
|
main_links {
|
|
title
|
|
open_in_new_tab
|
|
link {
|
|
href
|
|
title
|
|
}
|
|
pageConnection {
|
|
edges {
|
|
node {
|
|
...ContentPageLink
|
|
...HotelPageLink
|
|
...LoyaltyPageLink
|
|
}
|
|
}
|
|
}
|
|
}
|
|
secondary_links {
|
|
title
|
|
links {
|
|
title
|
|
open_in_new_tab
|
|
pageConnection {
|
|
edges {
|
|
node {
|
|
...ContentPageLink
|
|
...HotelPageLink
|
|
...LoyaltyPageLink
|
|
}
|
|
}
|
|
}
|
|
link {
|
|
href
|
|
title
|
|
}
|
|
}
|
|
}
|
|
tertiary_links {
|
|
title
|
|
open_in_new_tab
|
|
link {
|
|
href
|
|
title
|
|
}
|
|
pageConnection {
|
|
edges {
|
|
node {
|
|
...ContentPageLink
|
|
...HotelPageLink
|
|
...LoyaltyPageLink
|
|
}
|
|
}
|
|
}
|
|
}
|
|
...AppDownloads
|
|
...SocialMedia
|
|
}
|
|
}
|
|
}
|
|
|
|
query GetFooterRef($locale: String!) {
|
|
all_footer(limit: 1, locale: $locale) {
|
|
items {
|
|
main_links {
|
|
pageConnection {
|
|
edges {
|
|
node {
|
|
...ContentPageRef
|
|
...HotelPageRef
|
|
...LoyaltyPageRef
|
|
}
|
|
}
|
|
}
|
|
}
|
|
secondary_links {
|
|
links {
|
|
pageConnection {
|
|
edges {
|
|
node {
|
|
...ContentPageRef
|
|
...HotelPageRef
|
|
...LoyaltyPageRef
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
tertiary_links {
|
|
pageConnection {
|
|
edges {
|
|
node {
|
|
...ContentPageRef
|
|
...HotelPageRef
|
|
...LoyaltyPageRef
|
|
}
|
|
}
|
|
}
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|
|
}
|