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

21 lines
368 B
GraphQL

#import "./AccountPage.graphql"
#import "./LoyaltyPage.graphql"
fragment AccountPageContentDynamicContent on AccountPageContentDynamicContent {
dynamic_content {
component
title
link {
link_text
linkConnection {
edges {
node {
...LoyaltyPage
...AccountPage
}
}
}
}
}
}