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
@@ -0,0 +1,21 @@
#import "../Fragments/MyPages/Breadcrumbs.graphql"
#import "../Fragments/Refs/MyPages/Breadcrumbs.graphql"
query GetMyPagesBreadcrumbs($locale: String!, $url: String!) {
all_page: all_account_page(locale: $locale, where: { url: $url }) {
items {
...MyPagesBreadcrumbs
system {
uid
}
}
}
}
query GetMyPagesBreadcrumbsRefs($locale: String!, $url: String!) {
all_page: all_account_page(locale: $locale, where: { url: $url }) {
items {
...MyPagesBreadcrumbsRefs
}
}
}