Files
web/lib/graphql/Fragments/Blocks/Hero.graphql
2024-02-12 13:52:50 +01:00

30 lines
495 B
GraphQL

#import "../PageLinks.graphql"
fragment HeroBlock on CurrentBlocksPageBlocksHero {
hero {
imagesConnection {
totalCount
edges {
node {
title
url
}
}
}
ingress {
json
embedded_itemsConnection {
edges {
node {
...CurrentBlocksPageLink
...TempPageLink
... on SysAsset {
title
url
}
}
}
}
}
}
}