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