22 lines
494 B
GraphQL
22 lines
494 B
GraphQL
#import "../Fragments/MyPages/Breadcrumbs.graphql"
|
|
#import "../Fragments/Refs/Breadcrumbs.graphql"
|
|
|
|
query GetLoyaltyBreadcrumbs($locale: String!, $url: String!) {
|
|
all_loyalty_page(locale: $locale, where: { url: $url }) {
|
|
items {
|
|
...LoyaltyBreadcrumbs
|
|
system {
|
|
uid
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
query GetLoyaltyBreadcrumbsRefs($locale: String!, $url: String!) {
|
|
all_loyalty_page(locale: $locale, where: { url: $url }) {
|
|
items {
|
|
...LoyaltyBreadcrumbsRefs
|
|
}
|
|
}
|
|
}
|