30 lines
495 B
GraphQL
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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |