Feature/turbopack * . * . * pin import-in-the-middle * update marker * revert back to using *.graphql.ts Approved-by: Linus Flood
18 lines
268 B
TypeScript
18 lines
268 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
import { SysAsset } from "./SysAsset.graphql"
|
|
|
|
export const Hero = gql`
|
|
fragment Hero on Hero {
|
|
imagesConnection {
|
|
totalCount
|
|
edges {
|
|
node {
|
|
...SysAsset
|
|
}
|
|
}
|
|
}
|
|
}
|
|
${SysAsset}
|
|
`
|