14 lines
179 B
GraphQL
14 lines
179 B
GraphQL
#import "./Image.graphql"
|
|
#import "./PageLinks.graphql"
|
|
|
|
fragment Hero on Hero {
|
|
imagesConnection {
|
|
totalCount
|
|
edges {
|
|
node {
|
|
...Image
|
|
}
|
|
}
|
|
}
|
|
}
|