29 lines
670 B
GraphQL
29 lines
670 B
GraphQL
#import "../Fragments/Footer/AppDownloads.graphql"
|
|
#import "../Fragments/Footer/MainLinks.graphql"
|
|
#import "../Fragments/Footer/SecondaryLinks.graphql"
|
|
#import "../Fragments/Footer/Refs/MainLinks.graphql"
|
|
#import "../Fragments/Footer/Refs/SecondaryLinks.graphql"
|
|
#import "../Fragments/Refs/System.graphql"
|
|
|
|
query GetFooter($locale: String!) {
|
|
all_footer(limit: 1, locale: $locale) {
|
|
items {
|
|
...MainLinks
|
|
...SecondaryLinks
|
|
...AppDownloads
|
|
}
|
|
}
|
|
}
|
|
|
|
query GetFooterRef($locale: String!) {
|
|
all_footer(limit: 1, locale: $locale) {
|
|
items {
|
|
...MainLinksRef
|
|
...SecondaryLinksRef
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|
|
}
|