21 lines
361 B
GraphQL
21 lines
361 B
GraphQL
#import "./Image.graphql"
|
|
#import "./PageLinks.graphql"
|
|
|
|
fragment Preamble on CurrentBlocksPage {
|
|
preamble {
|
|
text {
|
|
json
|
|
embedded_itemsConnection(limit: 30) {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...CurrentBlocksPageLink
|
|
...Image
|
|
...TempPageLink
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|