refactor: renaming from accountPage to myPages
This commit is contained in:
7
lib/graphql/Fragments/Refs/MyPages/AccountPage.graphql
Normal file
7
lib/graphql/Fragments/Refs/MyPages/AccountPage.graphql
Normal file
@@ -0,0 +1,7 @@
|
||||
#import "../System.graphql"
|
||||
|
||||
fragment AccountPageRef on AccountPage {
|
||||
system {
|
||||
...System
|
||||
}
|
||||
}
|
||||
26
lib/graphql/Fragments/Refs/MyPages/Breadcrumbs.graphql
Normal file
26
lib/graphql/Fragments/Refs/MyPages/Breadcrumbs.graphql
Normal file
@@ -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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user