#import "../PageLink/ContentPageLink.graphql" #import "../PageLink/HotelPageLink.graphql" #import "../PageLink/LoyaltyPageLink.graphql" #import "../PageLink/CollectionPageLink.graphql" #import "../PageLink/AccountPageLink.graphql" #import "../ContentPage/Ref.graphql" #import "../CollectionPage/Ref.graphql" #import "../HotelPage/Ref.graphql" #import "../LoyaltyPage/Ref.graphql" #import "../AccountPage/Ref.graphql" fragment NavigationLinks_ContentPage on ContentPageHeader { navigation_links { title linkConnection { edges { node { __typename ...HotelPageLink ...ContentPageLink ...LoyaltyPageLink ...CollectionPageLink ...AccountPageLink } } } } } fragment NavigationLinksRef_ContentPage on ContentPageHeader { navigation_links { linkConnection { edges { node { __typename ...ContentPageRef ...HotelPageRef ...LoyaltyPageRef ...CollectionPageRef ...AccountPageRef } } } } }