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 TeaserCardBlockRef = gql` fragment TeaserCardBlockRef on TeaserCard { 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 } } } } sidepeek_content { content { embedded_itemsConnection { 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 } } } } secondary_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} `