Feat/footer * chore: correct type * fix: remove redundant return type * chore: align code formatting * chore: format code to avoid diffing noise * chore: clean up format diffing noise * chore: move props tying to types folder * fix: update app_downloads usage and types * fix: improve footer query and typings * refactor: add Image.graphql * fix: correct typings
35 lines
628 B
GraphQL
35 lines
628 B
GraphQL
#import "../PageLinks.graphql"
|
|
|
|
fragment Navigation on Footer {
|
|
navigation {
|
|
links {
|
|
... on FooterNavigationLinksInternalLink {
|
|
__typename
|
|
internal_link {
|
|
link_text
|
|
pageConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...TempPageLink
|
|
...CurrentBlocksPageLink
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
... on FooterNavigationLinksExternalLink {
|
|
__typename
|
|
external_link {
|
|
link {
|
|
href
|
|
title
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
title
|
|
}
|
|
}
|