#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 }) { items { url title content { __typename ...AccountPageContentDynamicContent ...AccountPageContentShortcuts ...AccountPageContentTextContent } } total } }