Revert gql * Revert "Merged in fix/system-fragment (pull request #3102)" This reverts commit0d479eb337. * Revert "Merged in chore/replace-graphql-tag/loader (pull request #3096)" This reverts commite9bd159e98.
30 lines
507 B
GraphQL
30 lines
507 B
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 ListBlock on CurrentBlocksPageBlocksList {
|
|
list {
|
|
list_items {
|
|
__typename
|
|
...ListItem
|
|
...ListItemExternalLink
|
|
}
|
|
title
|
|
}
|
|
}
|