39 lines
697 B
GraphQL
39 lines
697 B
GraphQL
#import "../Fragments/Refs/System.graphql"
|
|
|
|
#import "../Fragments/Header/InternalOrExternalLink.graphql"
|
|
|
|
query GetHeader($locale: String!) {
|
|
all_header(limit: 1, locale: $locale) {
|
|
items {
|
|
top_link {
|
|
...InternalOrExternalLink
|
|
}
|
|
menu_items {
|
|
title
|
|
link {
|
|
...InternalOrExternalLink
|
|
}
|
|
see_all_link {
|
|
...InternalOrExternalLink
|
|
}
|
|
submenu {
|
|
title
|
|
links {
|
|
...InternalOrExternalLink
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
query GetHeaderRef($locale: String!) {
|
|
all_header(limit: 1, locale: $locale) {
|
|
items {
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|
|
}
|