feat(SW-66, SW-348): search functionality and ui
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
#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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user