Files
web/lib/graphql/Fragments/Blocks/Text.graphql
T

19 lines
285 B
GraphQL

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