34 lines
596 B
GraphQL
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
|
|
}
|
|
}
|