Merged in chore/replace-graphql-tag/loader (pull request #3096)

Use turbopack for dev builds.
Remove graphql-tag/loader, replaced by gql`` tag literals instead.



Approved-by: Linus Flood
This commit is contained in:
Joakim Jäderberg
2025-11-07 12:33:17 +00:00
parent ae3537e008
commit e9bd159e98
291 changed files with 11734 additions and 8000 deletions

View File

@@ -1,9 +0,0 @@
#import "../System.graphql"
fragment AccountPageLink on AccountPage {
system {
...System
}
title
url
}

View File

@@ -0,0 +1,14 @@
import { gql } from "graphql-tag"
import { System } from "../System.graphql"
export const AccountPageLink = gql`
fragment AccountPageLink on AccountPage {
system {
...System
}
title
url
}
${System}
`

View File

@@ -1,9 +0,0 @@
#import "../System.graphql"
fragment CampaignOverviewPageLink on CampaignOverviewPage {
title
url
system {
...System
}
}

View File

@@ -0,0 +1,14 @@
import { gql } from "graphql-tag"
import { System } from "../System.graphql"
export const CampaignOverviewPageLink = gql`
fragment CampaignOverviewPageLink on CampaignOverviewPage {
title
url
system {
...System
}
}
${System}
`

View File

@@ -1,9 +0,0 @@
#import "../System.graphql"
fragment CampaignPageLink on CampaignPage {
title
url
system {
...System
}
}

View File

@@ -0,0 +1,14 @@
import { gql } from "graphql-tag"
import { System } from "../System.graphql"
export const CampaignPageLink = gql`
fragment CampaignPageLink on CampaignPage {
title
url
system {
...System
}
}
${System}
`

View File

@@ -1,12 +0,0 @@
#import "../System.graphql"
fragment CollectionPageLink on CollectionPage {
title
url
system {
...System
}
web {
original_url
}
}

View File

@@ -0,0 +1,17 @@
import { gql } from "graphql-tag"
import { System } from "../System.graphql"
export const CollectionPageLink = gql`
fragment CollectionPageLink on CollectionPage {
title
url
system {
...System
}
web {
original_url
}
}
${System}
`

View File

@@ -1,12 +0,0 @@
#import "../System.graphql"
fragment ContentPageLink on ContentPage {
title
url
system {
...System
}
web {
original_url
}
}

View File

@@ -0,0 +1,17 @@
import { gql } from "graphql-tag"
import { System } from "../System.graphql"
export const ContentPageLink = gql`
fragment ContentPageLink on ContentPage {
title
url
system {
...System
}
web {
original_url
}
}
${System}
`

View File

@@ -1,9 +0,0 @@
#import "../System.graphql"
fragment CurrentBlocksPageLink on CurrentBlocksPage {
title
url
system {
...System
}
}

View File

@@ -0,0 +1,14 @@
import { gql } from "graphql-tag"
import { System } from "../System.graphql"
export const CurrentBlocksPageLink = gql`
fragment CurrentBlocksPageLink on CurrentBlocksPage {
title
url
system {
...System
}
}
${System}
`

View File

@@ -1,9 +0,0 @@
#import "../System.graphql"
fragment CurrentBlocksPageLink on CurrentBlocksPage {
title
url
system {
...System
}
}

View File

@@ -0,0 +1,14 @@
import { gql } from "graphql-tag"
import { System } from "../System.graphql"
export const CurrentBlocksPageLink = gql`
fragment CurrentBlocksPageLink on CurrentBlocksPage {
title
url
system {
...System
}
}
${System}
`

View File

@@ -1,9 +0,0 @@
#import "../System.graphql"
fragment DestinationCityPageLink on DestinationCityPage {
title
url
system {
...System
}
}

View File

@@ -0,0 +1,14 @@
import { gql } from "graphql-tag"
import { System } from "../System.graphql"
export const DestinationCityPageLink = gql`
fragment DestinationCityPageLink on DestinationCityPage {
title
url
system {
...System
}
}
${System}
`

View File

@@ -1,9 +0,0 @@
#import "../System.graphql"
fragment DestinationCountryPageLink on DestinationCountryPage {
title
url
system {
...System
}
}

View File

@@ -0,0 +1,14 @@
import { gql } from "graphql-tag"
import { System } from "../System.graphql"
export const DestinationCountryPageLink = gql`
fragment DestinationCountryPageLink on DestinationCountryPage {
title
url
system {
...System
}
}
${System}
`

View File

@@ -1,9 +0,0 @@
#import "../System.graphql"
fragment DestinationOverviewPageLink on DestinationOverviewPage {
title
url
system {
...System
}
}

View File

@@ -0,0 +1,14 @@
import { gql } from "graphql-tag"
import { System } from "../System.graphql"
export const DestinationOverviewPageLink = gql`
fragment DestinationOverviewPageLink on DestinationOverviewPage {
title
url
system {
...System
}
}
${System}
`

View File

@@ -1,9 +0,0 @@
#import "../System.graphql"
fragment HotelPageLink on HotelPage {
system {
...System
}
title
url
}

View File

@@ -0,0 +1,14 @@
import { gql } from "graphql-tag"
import { System } from "../System.graphql"
export const HotelPageLink = gql`
fragment HotelPageLink on HotelPage {
system {
...System
}
title
url
}
${System}
`

View File

@@ -1,12 +0,0 @@
#import "../System.graphql"
fragment LoyaltyPageLink on LoyaltyPage {
title
url
system {
...System
}
web {
original_url
}
}

View File

@@ -0,0 +1,17 @@
import { gql } from "graphql-tag"
import { System } from "../System.graphql"
export const LoyaltyPageLink = gql`
fragment LoyaltyPageLink on LoyaltyPage {
title
url
system {
...System
}
web {
original_url
}
}
${System}
`

View File

@@ -1,9 +0,0 @@
#import "../System.graphql"
fragment PromoCampaignPageLink on PromoCampaignPage {
title
url
system {
...System
}
}

View File

@@ -0,0 +1,14 @@
import { gql } from "graphql-tag"
import { System } from "../System.graphql"
export const PromoCampaignPageLink = gql`
fragment PromoCampaignPageLink on PromoCampaignPage {
title
url
system {
...System
}
}
${System}
`

View File

@@ -1,9 +0,0 @@
#import "../System.graphql"
fragment StartPageLink on StartPage {
title
url
system {
...System
}
}

View File

@@ -0,0 +1,14 @@
import { gql } from "graphql-tag"
import { System } from "../System.graphql"
export const StartPageLink = gql`
fragment StartPageLink on StartPage {
title
url
system {
...System
}
}
${System}
`