Merged in feature/turbopack (pull request #3117)

Feature/turbopack

* .

* .

* pin import-in-the-middle

* update marker

* revert back to using *.graphql.ts


Approved-by: Linus Flood
This commit is contained in:
Joakim Jäderberg
2025-11-11 09:51:40 +00:00
parent ecb25cf6cd
commit bc5a606289
347 changed files with 12780 additions and 9059 deletions

View File

@@ -0,0 +1,57 @@
import { gql } from "graphql-tag"
export const HotelListing = gql`
fragment HotelListing on HotelListing {
heading
location_filter {
city_denmark
city_finland
city_germany
city_norway
city_poland
city_sweden
country
excluded
}
manual_filter {
hotels
}
content_type
}
`
export const HotelListing_ContentPage = gql`
fragment HotelListing_ContentPage on ContentPageBlocksHotelListing {
__typename
hotel_listing {
...HotelListing
}
}
${HotelListing}
`
export const HotelListing_CampaignPage = gql`
fragment HotelListing_CampaignPage on CampaignPageBlocksHotelListing {
hotel_listing {
heading
}
}
`
export const HotelListing_CampaignOverviewPage = gql`
fragment HotelListing_CampaignOverviewPage on CampaignOverviewPageBlocksHotelListing {
hotel_listing {
heading
preamble
included_hotelsConnection {
edges {
node {
... on HotelPage {
hotel_page_id
}
}
}
}
}
}
`