Files
web/lib/graphql/Fragments/MyPages/AccountPage/AccountPageContentTextContent.graphql
2024-05-03 08:16:52 +02:00

19 lines
318 B
GraphQL

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