38 lines
810 B
GraphQL
38 lines
810 B
GraphQL
#import "../Fragments/CurrentFooter/AppDownloads.graphql"
|
|
#import "../Fragments/CurrentFooter/Logo.graphql"
|
|
#import "../Fragments/CurrentFooter/Navigation.graphql"
|
|
#import "../Fragments/CurrentFooter/SocialMedia.graphql"
|
|
#import "../Fragments/CurrentFooter/TripAdvisor.graphql"
|
|
#import "../Fragments/Refs/System.graphql"
|
|
|
|
query GetCurrentFooter($locale: String!) {
|
|
all_current_footer(limit: 1, locale: $locale) {
|
|
items {
|
|
title
|
|
system {
|
|
locale
|
|
uid
|
|
}
|
|
about {
|
|
text
|
|
title
|
|
}
|
|
...AppDownloads
|
|
...Logo
|
|
...Navigation
|
|
...SocialMedia
|
|
...TripAdvisor
|
|
}
|
|
}
|
|
}
|
|
|
|
query GetCurrentFooterRef($locale: String!) {
|
|
all_current_footer(limit: 1, locale: $locale) {
|
|
items {
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|
|
}
|