Feature/turbopack * . * . * pin import-in-the-middle * update marker * revert back to using *.graphql.ts Approved-by: Linus Flood
33 lines
566 B
TypeScript
33 lines
566 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
import { System } from "../System.graphql"
|
|
|
|
export const DestinationCountryPageBreadcrumb = gql`
|
|
fragment DestinationCountryPageBreadcrumb on DestinationCountryPage {
|
|
web {
|
|
breadcrumbs {
|
|
title
|
|
}
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
url
|
|
}
|
|
${System}
|
|
`
|
|
|
|
export const DestinationCountryPageBreadcrumbRef = gql`
|
|
fragment DestinationCountryPageBreadcrumbRef on DestinationCountryPage {
|
|
web {
|
|
breadcrumbs {
|
|
title
|
|
}
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
${System}
|
|
`
|