Files
web/apps/scandic-web/lib/graphql/Fragments/Blocks/TextContent.graphql
Erik Tiekstra ac953ccd97 feat(SW-1818): Refactored sysAsset handling to support PDF links
Approved-by: Matilda Landström
2025-06-09 09:28:17 +00:00

19 lines
315 B
GraphQL

#import "../SysAsset.graphql"
fragment TextContent_AccountPage on AccountPageContentTextContent {
text_content {
content {
json
embedded_itemsConnection {
totalCount
edges {
node {
__typename
...SysAsset
}
}
}
}
}
}