Feature/turbopack * . * . * pin import-in-the-middle * update marker * revert back to using *.graphql.ts Approved-by: Linus Flood
26 lines
343 B
TypeScript
26 lines
343 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
import { SysAsset } from "./SysAsset.graphql"
|
|
|
|
export const Puff = gql`
|
|
fragment Puff on Puff {
|
|
imageConnection {
|
|
edges {
|
|
node {
|
|
...SysAsset
|
|
}
|
|
}
|
|
}
|
|
puff_style
|
|
link {
|
|
href
|
|
title
|
|
}
|
|
text {
|
|
json
|
|
}
|
|
title
|
|
}
|
|
${SysAsset}
|
|
`
|