Feature/turbopack * . * . * pin import-in-the-middle * update marker * revert back to using *.graphql.ts Approved-by: Linus Flood
23 lines
399 B
TypeScript
23 lines
399 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
import { SysAsset } from "./SysAsset.graphql"
|
|
|
|
export const Preamble = gql`
|
|
fragment Preamble on CurrentBlocksPage {
|
|
preamble {
|
|
text {
|
|
json
|
|
embedded_itemsConnection(limit: 30) {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...SysAsset
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
${SysAsset}
|
|
`
|