Files
web/lib/graphql/Fragments/MyPages/AccountPageContentShortcuts.graphql
2024-05-03 08:16:51 +02:00

21 lines
369 B
GraphQL

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