Files
web/lib/graphql/Fragments/Hero.graphql
2024-02-22 16:33:00 +01:00

13 lines
149 B
GraphQL

#import "./Image.graphql"
fragment Hero on Hero {
imagesConnection {
totalCount
edges {
node {
...Image
}
}
}
}