refactor: renaming from accountPage to myPages

This commit is contained in:
Matilda Landström
2024-05-28 16:50:18 +02:00
parent 6abbc7811a
commit 2dcf31e851
11 changed files with 66 additions and 65 deletions
@@ -1,51 +0,0 @@
#import "./System.graphql"
fragment MyPagesBreadcrumbsRefs on AccountPage {
web {
breadcrumbs {
title
parentsConnection {
edges {
node {
... on AccountPage {
breadcrumbs {
title
}
system {
...System
}
}
}
}
}
}
}
system {
...System
}
}
fragment LoyaltyPageBreadcrumbsRefs on LoyaltyPage {
web {
breadcrumbs {
title
parentsConnection {
edges {
node {
... on AccountPage {
breadcrumbs {
title
}
system {
...System
}
}
}
}
}
}
}
system {
...System
}
}
@@ -0,0 +1,26 @@
#import "../System.graphql"
fragment LoyaltyPageBreadcrumbsRefs on LoyaltyPage {
web {
breadcrumbs {
title
parentsConnection {
edges {
node {
... on AccountPage {
breadcrumbs {
title
}
system {
...System
}
}
}
}
}
}
}
system {
...System
}
}
@@ -1,4 +1,4 @@
#import "./System.graphql"
#import "../System.graphql"
fragment LoyaltyPageRef on LoyaltyPage {
system {
@@ -1,4 +1,4 @@
#import "./System.graphql"
#import "../System.graphql"
fragment AccountPageRef on AccountPage {
system {
@@ -0,0 +1,26 @@
#import "../System.graphql"
fragment MyPagesBreadcrumbsRefs on AccountPage {
web {
breadcrumbs {
title
parentsConnection {
edges {
node {
... on AccountPage {
breadcrumbs {
title
}
system {
...System
}
}
}
}
}
}
}
system {
...System
}
}