Feature/turbopack * . * . * pin import-in-the-middle * update marker * revert back to using *.graphql.ts Approved-by: Linus Flood
13 lines
210 B
TypeScript
13 lines
210 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
import { System } from "../System.graphql"
|
|
|
|
export const ContentPageRef = gql`
|
|
fragment ContentPageRef on ContentPage {
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
${System}
|
|
`
|