29 lines
561 B
GraphQL
29 lines
561 B
GraphQL
#import "../../Fragments/Breadcrumbs/Breadcrumbs.graphql"
|
|
#import "../../Fragments/System.graphql"
|
|
|
|
query GetCollectionPageBreadcrumbs($locale: String!, $uid: String!) {
|
|
collection_page(locale: $locale, uid: $uid) {
|
|
web {
|
|
breadcrumbs {
|
|
...Breadcrumbs
|
|
}
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|
|
|
|
query GetCollectionPageBreadcrumbsRefs($locale: String!, $uid: String!) {
|
|
collection_page(locale: $locale, uid: $uid) {
|
|
web {
|
|
breadcrumbs {
|
|
...BreadcrumbsRefs
|
|
}
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|