feat: graphql client with fetches for initial pages

This commit is contained in:
Simon Emanuelsson
2024-02-01 16:19:16 +01:00
parent a91781137a
commit 5e974aa3da
56 changed files with 2580 additions and 1512 deletions
@@ -0,0 +1,21 @@
#import "../PageLinks.graphql"
fragment PreambleBlock on CurrentBlocksPageBlocksPreamble {
preamble {
text {
json
embedded_itemsConnection(limit: 30) {
edges {
node {
...CurrentBlocksPageLink
...TempPageLink
... on SysAsset {
title
url
}
}
}
}
}
}
}