Use turbopack for dev builds. Remove graphql-tag/loader, replaced by gql`` tag literals instead. Approved-by: Linus Flood
55 lines
982 B
TypeScript
55 lines
982 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
import { System } from "../System.graphql"
|
|
|
|
export const CampaignPageIncludedHotels = gql`
|
|
fragment CampaignPageIncludedHotels on CampaignPageIncludedHotels {
|
|
list_1Connection {
|
|
edges {
|
|
node {
|
|
... on HotelPage {
|
|
hotel_page_id
|
|
}
|
|
}
|
|
}
|
|
}
|
|
list_2Connection {
|
|
edges {
|
|
node {
|
|
... on HotelPage {
|
|
hotel_page_id
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`
|
|
|
|
export const CampaignPageIncludedHotelsRef = gql`
|
|
fragment CampaignPageIncludedHotelsRef on CampaignPageIncludedHotels {
|
|
list_1Connection {
|
|
edges {
|
|
node {
|
|
... on HotelPage {
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
list_2Connection {
|
|
edges {
|
|
node {
|
|
... on HotelPage {
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
${System}
|
|
`
|