Files
web/lib/graphql/Fragments/Preamble.graphql
2024-04-12 16:10:58 +02:00

18 lines
266 B
GraphQL

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