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,12 +0,0 @@
fragment AppDownloads on Footer {
app_downloads {
title
links {
type
href {
href
title
}
}
}
}

View File

@@ -0,0 +1,16 @@
import { gql } from "graphql-tag"
export const AppDownloads = gql`
fragment AppDownloads on Footer {
app_downloads {
title
links {
type
href {
href
title
}
}
}
}
`

View File

@@ -1,22 +0,0 @@
#import "../../Refs/LoyaltyPage/LoyaltyPage.graphql"
#import "../../Refs/MyPages/AccountPage.graphql"
#import "../../Refs/ContentPage/ContentPage.graphql"
fragment TertiaryLinksRef on Footer {
__typename
tertiary_links {
pageConnection {
edges {
node {
__typename
...LoyaltyPageRef
...ContentPageRef
...AccountPageRef
}
}
}
}
system {
...System
}
}

View File

@@ -0,0 +1,29 @@
import { gql } from "graphql-tag"
import { AccountPageRef } from "../../AccountPage/Ref.graphql"
import { ContentPageRef } from "../../ContentPage/Ref.graphql"
import { LoyaltyPageRef } from "../../LoyaltyPage/Ref.graphql"
export const TertiaryLinksRef = gql`
fragment TertiaryLinksRef on Footer {
__typename
tertiary_links {
pageConnection {
edges {
node {
__typename
...LoyaltyPageRef
...ContentPageRef
...AccountPageRef
}
}
}
}
system {
...System
}
}
${LoyaltyPageRef}
${AccountPageRef}
${ContentPageRef}
`

View File

@@ -1,11 +0,0 @@
fragment SocialMedia on Footer {
social_media {
links {
href {
href
title
}
type
}
}
}

View File

@@ -0,0 +1,15 @@
import { gql } from "graphql-tag"
export const SocialMedia = gql`
fragment SocialMedia on Footer {
social_media {
links {
href {
href
title
}
type
}
}
}
`