25 lines
293 B
GraphQL
25 lines
293 B
GraphQL
#import "../System.graphql"
|
|
|
|
fragment AccountPageBreadcrumb on AccountPage {
|
|
web {
|
|
breadcrumbs {
|
|
title
|
|
}
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
url
|
|
}
|
|
|
|
fragment AccountPageBreadcrumbRef on AccountPage {
|
|
web {
|
|
breadcrumbs {
|
|
title
|
|
}
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|