diff --git a/lib/graphql/Fragments/LoyaltyPage/Breadcrumbs.graphql b/lib/graphql/Fragments/LoyaltyPage/Breadcrumbs.graphql index ee622ba53..621cee4b5 100644 --- a/lib/graphql/Fragments/LoyaltyPage/Breadcrumbs.graphql +++ b/lib/graphql/Fragments/LoyaltyPage/Breadcrumbs.graphql @@ -17,6 +17,18 @@ fragment LoyaltyPageBreadcrumbs on LoyaltyPage { } url } + ... on LoyaltyPage { + web { + breadcrumbs { + title + } + } + system { + locale + uid + } + url + } } } } diff --git a/lib/graphql/Fragments/Refs/LoyaltyPage/Breadcrumbs.graphql b/lib/graphql/Fragments/Refs/LoyaltyPage/Breadcrumbs.graphql index e4b56c0d4..b0e0946bf 100644 --- a/lib/graphql/Fragments/Refs/LoyaltyPage/Breadcrumbs.graphql +++ b/lib/graphql/Fragments/Refs/LoyaltyPage/Breadcrumbs.graphql @@ -17,6 +17,16 @@ fragment LoyaltyPageBreadcrumbsRefs on LoyaltyPage { ...System } } + ... on LoyaltyPage { + web { + breadcrumbs { + title + } + } + system { + ...System + } + } } } }