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

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
}
}
}
}
}
}