I have…
- Read the following guideline: Troubleshooting and Support | Squidex. I understand that my support request might get deleted if I do not follow the guideline.
- Used code blocks with ``` to format my code examples like JSON or logs properly.
Current behavior
I want to reduce the number of API calls. Therefore, I am trying to use the GrapQL endpoint to include nececerry asset information. I am using the dynamic block feature in a few schemas. ([IMPLEMENTED] Dynamic block support)
If i call:
query getHomePage {
queryHomepageContents {
data {
title {
iv
},
description {
iv
},
header__Dynamic {
de
}
}
}
}
I get:
{
"data": {
"queryHomepageContents": [
{
"data": {
"title": {
"iv": "..."
},
"description": {
"iv": "..."
},
"header__Dynamic": {
"de": {
"schemaId": "a3e6d822-ebb3-4dc5-bd4b-eb65234154f2",
"CallToActionLabel": "...",
"CallToActionUrl": "...",
"Description": "...",
"Image": [
"e52274bd-36f3-4cce-a31c-18e19f49fd9c"
]
}
}
}
}
]
}
}
Question
Is there a way to include additional asset information such as description, URL, width, height, etc.?