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

View File

@@ -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
}
}
}
}
}
}
}