Files
web/lib/graphql/Fragments/MyPages/AccountPage/AccountPageContentDynamicContent.graphql
2024-05-03 08:16:52 +02:00

23 lines
442 B
GraphQL

#import "../../PageLink/AccountPageLink.graphql"
#import "../../PageLink/LoyaltyPageLink.graphql"
fragment AccountPageContentDynamicContent on AccountPageContentDynamicContent {
dynamic_content {
component
title
preamble
link {
link_text
linkConnection {
totalCount
edges {
node {
...LoyaltyPageLink
...AccountPageLink
}
}
}
}
}
}