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

22 lines
381 B
GraphQL

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