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
50 lines
900 B
GraphQL
50 lines
900 B
GraphQL
#import "../PageLinks.graphql"
|
|
|
|
fragment ListItem on CurrentBlocksPageBlocksListBlockListItemsListItem {
|
|
list_item {
|
|
list_item_style
|
|
subtitle
|
|
title
|
|
}
|
|
}
|
|
|
|
fragment ListItemExternalLink on CurrentBlocksPageBlocksListBlockListItemsListItemExternalLink {
|
|
list_item_external_link {
|
|
link {
|
|
href
|
|
title
|
|
}
|
|
list_item_style
|
|
subtitle
|
|
}
|
|
}
|
|
|
|
fragment ListItemInternalLink on CurrentBlocksPageBlocksListBlockListItemsListItemInternalLink {
|
|
list_item_internal_link {
|
|
link_text
|
|
list_item_style
|
|
subtitle
|
|
pageConnection {
|
|
totalCount
|
|
edges {
|
|
node {
|
|
...CurrentBlocksPageLink
|
|
...TempPageLink
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fragment ListBlock on CurrentBlocksPageBlocksList {
|
|
list {
|
|
list_items {
|
|
__typename
|
|
...ListItem
|
|
...ListItemExternalLink
|
|
...ListItemInternalLink
|
|
}
|
|
title
|
|
}
|
|
}
|