Files
web/lib/graphql/Fragments/Blocks/Preamble.graphql
2024-02-07 11:58:54 +01:00

22 lines
393 B
GraphQL

#import "../PageLinks.graphql"
fragment PreambleBlock on CurrentBlocksPageBlocksPreamble {
preamble {
text {
json
embedded_itemsConnection(limit: 30) {
edges {
node {
...CurrentBlocksPageLink
...TempPageLink
... on SysAsset {
title
url
}
}
}
}
}
}
}