22 lines
423 B
GraphQL
22 lines
423 B
GraphQL
#import "../../PageLink/AccountPageLink.graphql"
|
|
#import "../../PageLink/LoyaltyPageLink.graphql"
|
|
|
|
fragment AccountPageContentDynamicContent on AccountPageContentDynamicContent {
|
|
dynamic_content {
|
|
component
|
|
title
|
|
preamble
|
|
link {
|
|
link_text
|
|
linkConnection {
|
|
edges {
|
|
node {
|
|
...LoyaltyPageLink
|
|
...AccountPageLink
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|