feat: add initial RTE rendering to AccountPage

This commit is contained in:
Arvid Norlin
2024-04-19 15:54:13 +02:00
parent 0dd8998ff8
commit 3d5f0ebb2c
4 changed files with 35 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
#import "../Fragments/MyPages/AccountPage/AccountPageContentDynamicContent.graphql"
#import "../Fragments/MyPages/AccountPage/AccountPageContentShortcuts.graphql"
#import "../Fragments/MyPages/AccountPage/AccountPageContentTextContent.graphql"
query GetAccountPage($locale: String!, $url: String!) {
all_account_page(limit: 1, locale: $locale, where: { url: $url }) {
@@ -10,6 +11,7 @@ query GetAccountPage($locale: String!, $url: String!) {
__typename
...AccountPageContentDynamicContent
...AccountPageContentShortcuts
...AccountPageContentTextContent
}
}
total