23 lines
485 B
GraphQL
23 lines
485 B
GraphQL
#import "../../PageLink/AccountPageLink.graphql"
|
|
#import "../../PageLink/ContentPageLink.graphql"
|
|
#import "../../PageLink/LoyaltyPageLink.graphql"
|
|
|
|
fragment AccountPageContentShortcuts on AccountPageContentShortcuts {
|
|
shortcuts {
|
|
title
|
|
preamble
|
|
shortcuts {
|
|
linkConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...AccountPageLink
|
|
...LoyaltyPageLink
|
|
...ContentPageLink
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|