import { gql } from "graphql-tag" import { Alert } from "../Alert.graphql" import { ImageContainer } from "../ImageContainer.graphql" import { AccountPageLink } from "../PageLink/AccountPageLink.graphql" import { CampaignOverviewPageLink } from "../PageLink/CampaignOverviewPageLink.graphql" import { CampaignPageLink } from "../PageLink/CampaignPageLink.graphql" import { CollectionPageLink } from "../PageLink/CollectionPageLink.graphql" import { ContentPageLink } from "../PageLink/ContentPageLink.graphql" import { DestinationCityPageLink } from "../PageLink/DestinationCityPageLink.graphql" import { DestinationCountryPageLink } from "../PageLink/DestinationCountryPageLink.graphql" import { DestinationOverviewPageLink } from "../PageLink/DestinationOverviewPageLink.graphql" import { HotelPageLink } from "../PageLink/HotelPageLink.graphql" import { LoyaltyPageLink } from "../PageLink/LoyaltyPageLink.graphql" import { PromoCampaignPageLink } from "../PageLink/PromoCampaignPageLink.graphql" import { StartPageLink } from "../PageLink/StartPageLink.graphql" import { SysAsset } from "../SysAsset.graphql" export const Content_ContentPage = gql` fragment Content_ContentPage on ContentPageBlocksContent { content { content { embedded_itemsConnection { edges { node { __typename ...SysAsset ...Alert ...ImageContainer ...AccountPageLink ...CampaignOverviewPageLink ...CampaignPageLink ...CollectionPageLink ...ContentPageLink ...DestinationCityPageLink ...DestinationCountryPageLink ...DestinationOverviewPageLink ...HotelPageLink ...LoyaltyPageLink ...StartPageLink ...PromoCampaignPageLink } } } json } } } ${SysAsset} ${Alert} ${ImageContainer} ${AccountPageLink} ${CampaignOverviewPageLink} ${CampaignPageLink} ${CollectionPageLink} ${ContentPageLink} ${DestinationCityPageLink} ${DestinationCountryPageLink} ${DestinationOverviewPageLink} ${HotelPageLink} ${LoyaltyPageLink} ${StartPageLink} ${PromoCampaignPageLink} ` export const Content_LoyaltyPage = gql` fragment Content_LoyaltyPage on LoyaltyPageBlocksContent { content { content { json embedded_itemsConnection { edges { node { __typename ...SysAsset ...ImageContainer ...AccountPageLink ...CampaignOverviewPageLink ...CampaignPageLink ...CollectionPageLink ...ContentPageLink ...DestinationCityPageLink ...DestinationCountryPageLink ...DestinationOverviewPageLink ...HotelPageLink ...LoyaltyPageLink ...StartPageLink ...PromoCampaignPageLink } } } } } } ${SysAsset} ${ImageContainer} ${AccountPageLink} ${CampaignOverviewPageLink} ${CampaignPageLink} ${CollectionPageLink} ${ContentPageLink} ${DestinationCityPageLink} ${DestinationCountryPageLink} ${DestinationOverviewPageLink} ${HotelPageLink} ${LoyaltyPageLink} ${StartPageLink} ${PromoCampaignPageLink} ` export const Content_DestinationCityPage = gql` fragment Content_DestinationCityPage on DestinationCityPageBlocksContent { content { content { embedded_itemsConnection { edges { node { __typename ...AccountPageLink ...CampaignOverviewPageLink ...CampaignPageLink ...CollectionPageLink ...ContentPageLink ...DestinationCityPageLink ...DestinationCountryPageLink ...DestinationOverviewPageLink ...HotelPageLink ...LoyaltyPageLink ...StartPageLink ...PromoCampaignPageLink } } } json } } } ${AccountPageLink} ${CampaignOverviewPageLink} ${CampaignPageLink} ${CollectionPageLink} ${ContentPageLink} ${DestinationCityPageLink} ${DestinationCountryPageLink} ${DestinationOverviewPageLink} ${HotelPageLink} ${LoyaltyPageLink} ${StartPageLink} ${PromoCampaignPageLink} ` export const Content_DestinationCountryPage = gql` fragment Content_DestinationCountryPage on DestinationCountryPageBlocksContent { content { content { embedded_itemsConnection { edges { node { __typename ...AccountPageLink ...CampaignOverviewPageLink ...CampaignPageLink ...CollectionPageLink ...ContentPageLink ...DestinationCityPageLink ...DestinationCountryPageLink ...DestinationOverviewPageLink ...HotelPageLink ...LoyaltyPageLink ...StartPageLink ...PromoCampaignPageLink } } } json } } } ${AccountPageLink} ${CampaignOverviewPageLink} ${CampaignPageLink} ${CollectionPageLink} ${ContentPageLink} ${DestinationCityPageLink} ${DestinationCountryPageLink} ${DestinationOverviewPageLink} ${HotelPageLink} ${LoyaltyPageLink} ${StartPageLink} ${PromoCampaignPageLink} ` export const Content_DestinationFilterBlocks = gql` fragment Content_DestinationFilterBlocks on DestinationFilterBlocksContent { content { content { embedded_itemsConnection { edges { node { __typename ...AccountPageLink ...CampaignOverviewPageLink ...CampaignPageLink ...CollectionPageLink ...ContentPageLink ...DestinationCityPageLink ...DestinationCountryPageLink ...DestinationOverviewPageLink ...HotelPageLink ...LoyaltyPageLink ...StartPageLink ...PromoCampaignPageLink } } } json } } } ${AccountPageLink} ${CampaignOverviewPageLink} ${CampaignPageLink} ${CollectionPageLink} ${ContentPageLink} ${DestinationCityPageLink} ${DestinationCountryPageLink} ${DestinationOverviewPageLink} ${HotelPageLink} ${LoyaltyPageLink} ${StartPageLink} ${PromoCampaignPageLink} ` export const Content_PromoCampaignPage = gql` fragment Content_PromoCampaignPage on PromoCampaignPageBlocksContent { content { content { embedded_itemsConnection { edges { node { __typename ...SysAsset ...AccountPageLink ...CampaignOverviewPageLink ...CampaignPageLink ...CollectionPageLink ...ContentPageLink ...DestinationCityPageLink ...DestinationCountryPageLink ...DestinationOverviewPageLink ...HotelPageLink ...LoyaltyPageLink ...StartPageLink ...PromoCampaignPageLink } } } json } } } ${SysAsset} ${AccountPageLink} ${CampaignOverviewPageLink} ${CampaignPageLink} ${CollectionPageLink} ${ContentPageLink} ${DestinationCityPageLink} ${DestinationCountryPageLink} ${DestinationOverviewPageLink} ${HotelPageLink} ${LoyaltyPageLink} ${StartPageLink} ${PromoCampaignPageLink} `