Files
web/lib/graphql/Fragments/Preamble.graphql
Simon Emanuelsson b103d9ef12 feat: remove temppage
2024-02-12 15:40:02 +01:00

20 lines
333 B
GraphQL

#import "./Image.graphql"
#import "./PageLinks.graphql"
fragment Preamble on CurrentBlocksPage {
preamble {
text {
json
embedded_itemsConnection(limit: 30) {
edges {
node {
__typename
...CurrentBlocksPageLink
...Image
}
}
}
}
}
}