37 lines
840 B
GraphQL
37 lines
840 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/System.graphql"
|
|
|
|
query GetCurrentFooter($locale: String!) {
|
|
all_current_footer(limit: 1, locale: $locale) {
|
|
items {
|
|
...CurrentFooterAppDownloads
|
|
...CurrentFooterSocialMedia
|
|
...Logo
|
|
...Navigation
|
|
...TripAdvisor
|
|
title
|
|
about {
|
|
text
|
|
title
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
query GetCurrentFooterRef($locale: String!) {
|
|
all_current_footer(limit: 1, locale: $locale) {
|
|
items {
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|
|
}
|