Files
web/lib/graphql/Fragments/MyPages/AccountPageContentShortcuts.graphql

23 lines
479 B
GraphQL

#import "../PageLinks/AccountPageLink.graphql"
#import "../PageLinks/ContentPageLink.graphql"
#import "../PageLinks/LoyaltyPageLink.graphql"
fragment AccountPageContentShortcuts on AccountPageContentShortcuts {
shortcuts {
title
preamble
shortcuts {
linkConnection {
edges {
node {
__typename
...AccountPageLink
...LoyaltyPageLink
...ContentPageLink
}
}
}
}
}
}