Files
web/lib/graphql/Fragments/Blocks/Text.graphql
2024-02-07 11:58:54 +01:00

23 lines
392 B
GraphQL

#import "../PageLinks.graphql"
fragment TextBlock on CurrentBlocksPageBlocksText {
text {
content {
embedded_itemsConnection {
totalCount
edges {
node {
...CurrentBlocksPageLink
...TempPageLink
... on SysAsset {
title
url
}
}
}
}
json
}
}
}