Feat/SW-1449 destination page * feat(SW-1449): Added destination country page * feat(SW-1449): added destination city page Approved-by: Fredrik Thorsson Approved-by: Matilda Landström
47 lines
1.1 KiB
GraphQL
47 lines
1.1 KiB
GraphQL
#import "./AccountPage.graphql"
|
|
#import "./CollectionPage.graphql"
|
|
#import "./ContentPage.graphql"
|
|
#import "./DestinationOverviewPage.graphql"
|
|
#import "./DestinationCountryPage.graphql"
|
|
#import "./DestinationCityPage.graphql"
|
|
#import "./HotelPage.graphql"
|
|
#import "./LoyaltyPage.graphql"
|
|
|
|
fragment Breadcrumbs on Breadcrumbs {
|
|
title
|
|
parentsConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...AccountPageBreadcrumb
|
|
...CollectionPageBreadcrumb
|
|
...ContentPageBreadcrumb
|
|
...DestinationOverviewPageBreadcrumb
|
|
...DestinationCountryPageBreadcrumb
|
|
...DestinationCityPageBreadcrumb
|
|
...HotelPageBreadcrumb
|
|
...LoyaltyPageBreadcrumb
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fragment BreadcrumbsRefs on Breadcrumbs {
|
|
title
|
|
parentsConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...AccountPageBreadcrumbRef
|
|
...CollectionPageBreadcrumbRef
|
|
...ContentPageBreadcrumbRef
|
|
...DestinationOverviewPageBreadcrumbRef
|
|
...DestinationCountryPageBreadcrumbRef
|
|
...DestinationCityPageBreadcrumbRef
|
|
...HotelPageBreadcrumbRef
|
|
...LoyaltyPageBreadcrumbRef
|
|
}
|
|
}
|
|
}
|
|
}
|