feat(SW-1442): added destination overview page * feat(SW-1442): added destination overview page Approved-by: Fredrik Thorsson Approved-by: Matilda Landström
32 lines
604 B
GraphQL
32 lines
604 B
GraphQL
#import "../../Fragments/Breadcrumbs/Breadcrumbs.graphql"
|
|
#import "../../Fragments/System.graphql"
|
|
|
|
query GetDestinationOverviewPageBreadcrumbs($locale: String!, $uid: String!) {
|
|
destination_overview_page(locale: $locale, uid: $uid) {
|
|
web {
|
|
breadcrumbs {
|
|
...Breadcrumbs
|
|
}
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|
|
|
|
query GetDestinationOverviewPageBreadcrumbsRefs(
|
|
$locale: String!
|
|
$uid: String!
|
|
) {
|
|
destination_overview_page(locale: $locale, uid: $uid) {
|
|
web {
|
|
breadcrumbs {
|
|
...BreadcrumbsRefs
|
|
}
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|