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

17 lines
224 B
GraphQL

#import "./PageLinks.graphql"
fragment Hero on Hero {
imagesConnection {
totalCount
edges {
node {
dimension {
height
width
}
title
url
}
}
}
}