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

@@ -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}
`