41 lines
909 B
GraphQL
41 lines
909 B
GraphQL
#import "../PageLink/CollectionPageLink.graphql"
|
|
#import "../PageLink/ContentPageLink.graphql"
|
|
#import "../PageLink/HotelPageLink.graphql"
|
|
#import "../PageLink/LoyaltyPageLink.graphql"
|
|
#import "../PageLink/AccountPageLink.graphql"
|
|
|
|
fragment NavigationLinks_CollectionPage on CollectionPageHeader {
|
|
navigation_links {
|
|
title
|
|
linkConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...HotelPageLink
|
|
...CollectionPageLink
|
|
...ContentPageLink
|
|
...LoyaltyPageLink
|
|
...AccountPageLink
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fragment NavigationLinksRef_CollectionPage on CollectionPageHeader {
|
|
navigation_links {
|
|
linkConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...ContentPageRef
|
|
...HotelPageRef
|
|
...LoyaltyPageRef
|
|
...CollectionPageRef
|
|
...AccountPageRef
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|