import { gql } from "graphql-tag" 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" export const Shortcuts = gql` fragment Shortcuts on Shortcuts { subtitle: preamble title two_column_list shortcuts { is_contentstack_link external_link { href title } open_in_new_tab text linkConnection { edges { node { __typename ...AccountPageLink ...CampaignOverviewPageLink ...CampaignPageLink ...CollectionPageLink ...ContentPageLink ...DestinationCityPageLink ...DestinationCountryPageLink ...DestinationOverviewPageLink ...HotelPageLink ...LoyaltyPageLink ...StartPageLink ...PromoCampaignPageLink } } } } } ${AccountPageLink} ${CampaignOverviewPageLink} ${CampaignPageLink} ${CollectionPageLink} ${ContentPageLink} ${DestinationCityPageLink} ${DestinationCountryPageLink} ${DestinationOverviewPageLink} ${HotelPageLink} ${LoyaltyPageLink} ${StartPageLink} ${PromoCampaignPageLink} ` export const Shortcuts_AccountPage = gql` fragment Shortcuts_AccountPage on AccountPageContentShortcuts { shortcuts { ...Shortcuts } } ${Shortcuts} ` export const Shortcuts_CollectionPage = gql` fragment Shortcuts_CollectionPage on CollectionPageBlocksShortcuts { shortcuts { ...Shortcuts } } ${Shortcuts} ` export const Shortcuts_ContentPage = gql` fragment Shortcuts_ContentPage on ContentPageBlocksShortcuts { shortcuts { ...Shortcuts } } ${Shortcuts} ` export const Shortcuts_LoyaltyPage = gql` fragment Shortcuts_LoyaltyPage on LoyaltyPageBlocksShortcuts { shortcuts { ...Shortcuts } } ${Shortcuts} `