Files
web/packages/trpc/lib/graphql/Fragments/Blocks/Refs/InfoCard.graphql.ts
Joakim Jäderberg e9bd159e98 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
2025-11-07 12:33:17 +00:00

77 lines
2.3 KiB
TypeScript

import { gql } from "graphql-tag"
import { AccountPageRef } from "../../AccountPage/Ref.graphql"
import { CampaignOverviewPageRef } from "../../CampaignOverviewPage/Ref.graphql"
import { CampaignPageRef } from "../../CampaignPage/Ref.graphql"
import { CollectionPageRef } from "../../CollectionPage/Ref.graphql"
import { ContentPageRef } from "../../ContentPage/Ref.graphql"
import { DestinationCityPageRef } from "../../DestinationCityPage/Ref.graphql"
import { DestinationCountryPageRef } from "../../DestinationCountryPage/Ref.graphql"
import { DestinationOverviewPageRef } from "../../DestinationOverviewPage/Ref.graphql"
import { HotelPageRef } from "../../HotelPage/Ref.graphql"
import { LoyaltyPageRef } from "../../LoyaltyPage/Ref.graphql"
import { PromoCampaignPageRef } from "../../PromoCampaignPage/Ref.graphql"
import { StartPageRef } from "../../StartPage/Ref.graphql"
export const InfoCardBlockRef = gql`
fragment InfoCardBlockRef on InfoCard {
secondary_button {
linkConnection {
edges {
node {
__typename
...AccountPageRef
...CampaignOverviewPageRef
...CampaignPageRef
...CollectionPageRef
...ContentPageRef
...DestinationCityPageRef
...DestinationCountryPageRef
...DestinationOverviewPageRef
...HotelPageRef
...LoyaltyPageRef
...StartPageRef
...PromoCampaignPageRef
}
}
}
}
primary_button {
linkConnection {
edges {
node {
__typename
...AccountPageRef
...CampaignOverviewPageRef
...CampaignPageRef
...CollectionPageRef
...ContentPageRef
...DestinationCityPageRef
...DestinationCountryPageRef
...DestinationOverviewPageRef
...HotelPageRef
...LoyaltyPageRef
...StartPageRef
...PromoCampaignPageRef
}
}
}
}
system {
...System
}
}
${AccountPageRef}
${CampaignOverviewPageRef}
${CampaignPageRef}
${CollectionPageRef}
${ContentPageRef}
${DestinationCityPageRef}
${DestinationCountryPageRef}
${DestinationOverviewPageRef}
${HotelPageRef}
${LoyaltyPageRef}
${StartPageRef}
${PromoCampaignPageRef}
`