21 lines
368 B
GraphQL
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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|