refactor: update names

This commit is contained in:
Matilda Landström
2024-05-23 15:52:57 +02:00
parent 9a9da7595c
commit 4cfd908024
7 changed files with 43 additions and 46 deletions

View File

@@ -0,0 +1,21 @@
#import "../Fragments/MyPages/Breadcrumbs.graphql"
#import "../Fragments/Refs/Breadcrumbs.graphql"
query GetLoyaltyPageBreadcrumbs($locale: String!, $url: String!) {
all_loyalty_page(locale: $locale, where: { url: $url }) {
items {
...LoyaltyPageBreadcrumbs
system {
uid
}
}
}
}
query GetLoyaltyPageBreadcrumbsRefs($locale: String!, $url: String!) {
all_loyalty_page(locale: $locale, where: { url: $url }) {
items {
...LoyaltyPageBreadcrumbsRefs
}
}
}