Files
web/lib/graphql/Fragments/Blocks/Text.graphql
2024-02-12 11:26:49 +01:00

22 lines
381 B
GraphQL

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