Feature/turbopack * . * . * pin import-in-the-middle * update marker * revert back to using *.graphql.ts Approved-by: Linus Flood
47 lines
962 B
TypeScript
47 lines
962 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
import { HotelFilter } from "../../Fragments/HotelFilter.graphql"
|
|
import { Metadata } from "../../Fragments/Metadata.graphql"
|
|
import { System } from "../../Fragments/System.graphql"
|
|
|
|
export const GetDestinationCountryPageMetadata = gql`
|
|
query GetDestinationCountryPageMetadata($locale: String!, $uid: String!) {
|
|
destination_country_page(locale: $locale, uid: $uid) {
|
|
web {
|
|
breadcrumbs {
|
|
title
|
|
}
|
|
seo_metadata {
|
|
...Metadata
|
|
}
|
|
}
|
|
destination_settings {
|
|
country
|
|
}
|
|
images {
|
|
image
|
|
}
|
|
seo_filters {
|
|
heading
|
|
preamble
|
|
seo_metadata {
|
|
...Metadata
|
|
}
|
|
filterConnection {
|
|
edges {
|
|
node {
|
|
...HotelFilter
|
|
}
|
|
}
|
|
}
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|
|
${Metadata}
|
|
${System}
|
|
${HotelFilter}
|
|
`
|