Files
web/apps/scandic-web/lib/graphql/Fragments/Blocks/Text.graphql
T
2025-06-09 09:28:17 +00:00

19 lines
291 B
GraphQL

#import "../SysAsset.graphql"
fragment TextBlock on CurrentBlocksPageBlocksText {
text {
content {
embedded_itemsConnection {
totalCount
edges {
node {
__typename
...SysAsset
}
}
}
json
}
}
}