21 lines
353 B
GraphQL
21 lines
353 B
GraphQL
#import "../Image.graphql"
|
|
#import "../PageLinks.graphql"
|
|
|
|
fragment TextBlock on CurrentBlocksPageBlocksText {
|
|
text {
|
|
content {
|
|
embedded_itemsConnection {
|
|
totalCount
|
|
edges {
|
|
node {
|
|
__typename
|
|
...CurrentBlocksPageLink
|
|
...Image
|
|
}
|
|
}
|
|
}
|
|
json
|
|
}
|
|
}
|
|
}
|