20 lines
402 B
GraphQL
20 lines
402 B
GraphQL
#import "../PageLink/ContentPageLink.graphql"
|
|
#import "../PageLink/HotelPageLink.graphql"
|
|
#import "../PageLink/LoyaltyPageLink.graphql"
|
|
|
|
fragment NavigationLinks on ContentPageHeader {
|
|
navigation_links {
|
|
title
|
|
linkConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...HotelPageLink
|
|
...ContentPageLink
|
|
...LoyaltyPageLink
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|