Files
web/lib/graphql/Fragments/ContentPage/NavigationLinks.graphql
2025-01-07 10:46:56 +01:00

47 lines
1.1 KiB
GraphQL

#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
}
}
}
}
}