Feature/turbopack * . * . * pin import-in-the-middle * update marker * revert back to using *.graphql.ts Approved-by: Linus Flood
14 lines
240 B
TypeScript
14 lines
240 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
export const CurrentBlocksPageBreadcrumbs = gql`
|
|
fragment CurrentBlocksPageBreadcrumbs on CurrentBlocksPage {
|
|
breadcrumbs {
|
|
parents {
|
|
href
|
|
title
|
|
}
|
|
title
|
|
}
|
|
}
|
|
`
|