e9bd159e98
Use turbopack for dev builds. Remove graphql-tag/loader, replaced by gql`` tag literals instead. Approved-by: Linus Flood
23 lines
367 B
TypeScript
23 lines
367 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}
|
|
`
|