I have a Blog Post model with a body field that contains structured text. Translation is enabled on the body field.
My issue is I can’t figure out how to query for Blog Posts that have actually been populated with content (not all posts are translated, and not all languages have a translation for every post). Even for languages I have populated no content for, the value of the field is:
“body”: {
“value”: {
“schema”: “dast”,
“document”: {
“type”: “root”,
“children”: [
{
“type”: “paragraph”,
“children”: [
{
“type”: “span”,
“value”: “”
}
]
}
]
}
}
},
Any suggestions?