chore: add breadcrumbs to loyalty page

This commit is contained in:
Matilda Landström
2024-05-23 14:27:49 +02:00
parent c24f9026f7
commit b262ebdb7c
9 changed files with 331 additions and 8 deletions
@@ -19,3 +19,27 @@ fragment MyPagesBreadcrumbs on AccountPage {
}
}
}
fragment LoyaltyBreadcrumbs on LoyaltyPage {
web {
breadcrumbss {
title
parentsConnection {
edges {
node {
... on AccountPage {
breadcrumbs {
title
}
system {
locale
uid
}
url
}
}
}
}
}
}
}
@@ -18,3 +18,31 @@ fragment MyPagesBreadcrumbsRefs on AccountPage {
...System
}
}
fragment LoyaltyBreadcrumbsRefs on LoyaltyPage {
web {
breadcrumbss {
title
parentsConnection {
edges {
node {
... on AccountPage {
breadcrumbs {
title
}
system {
uid
locale
content_type_uid
}
url
}
}
}
}
}
}
system {
...System
}
}