Files
web/lib/graphql/Fragments/Blocks/Text.graphql
2024-02-22 16:33:00 +01:00

19 lines
285 B
GraphQL

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