Files
web/apps/scandic-web/lib/graphql/Fragments/Preamble.graphql
Erik Tiekstra ac953ccd97 feat(SW-1818): Refactored sysAsset handling to support PDF links
Approved-by: Matilda Landström
2025-06-09 09:28:17 +00:00

18 lines
272 B
GraphQL

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