Merged in revert-gql (pull request #3104)

Revert gql

* Revert "Merged in fix/system-fragment (pull request #3102)"

This reverts commit 0d479eb337.

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

This reverts commit e9bd159e98.
This commit is contained in:
Linus Flood
2025-11-07 13:13:28 +00:00
parent cab85f3ffd
commit 5770dcdd9c
291 changed files with 8000 additions and 11733 deletions

View File

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

View File

@@ -1,14 +0,0 @@
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

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

View File

@@ -1,14 +0,0 @@
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

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

View File

@@ -1,14 +0,0 @@
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

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

View File

@@ -1,17 +0,0 @@
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

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

View File

@@ -1,17 +0,0 @@
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

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

View File

@@ -1,14 +0,0 @@
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

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

View File

@@ -1,14 +0,0 @@
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

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

View File

@@ -1,14 +0,0 @@
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

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

View File

@@ -1,14 +0,0 @@
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

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

View File

@@ -1,14 +0,0 @@
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

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

View File

@@ -1,14 +0,0 @@
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

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

View File

@@ -1,17 +0,0 @@
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

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

View File

@@ -1,14 +0,0 @@
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

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

View File

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