Files
web/lib/graphql/Query/CurrentHeader.graphql
2024-05-31 09:25:15 +02:00

33 lines
534 B
GraphQL

#import "../Fragments/Image.graphql"
query GetCurrentHeader($locale: String!) {
all_current_header(limit: 1, locale: $locale) {
items {
frontpage_link_text
logoConnection {
edges {
node {
...Image
}
}
}
menu {
links {
href
title
}
}
top_menu {
links {
link {
href
title
}
show_on_mobile
sort_order_mobile
}
}
}
}
}