Files
web/lib/graphql/Fragments/Footer/Navigation.graphql
Simon Emanuelsson b103d9ef12 feat: remove temppage
2024-02-12 15:40:02 +01:00

34 lines
596 B
GraphQL

#import "../PageLinks.graphql"
fragment Navigation on Footer {
navigation {
links {
... on FooterNavigationLinksInternalLink {
__typename
internal_link {
link_text
pageConnection {
edges {
node {
__typename
...CurrentBlocksPageLink
}
}
}
}
}
... on FooterNavigationLinksExternalLink {
__typename
external_link {
link {
href
title
}
}
}
}
title
}
}