Release Notes > 6.4.11
Webiny 6.4.11 Changelog
See what's new in Webiny version 6.4.11
Headless CMS
Fixed Full-Text Search onsearchableJsonFields for OpenSearch Deployments (#5683
)
{/ REVIEW-PENDING @brunozoric — confirm this entry, then delete this line /}
Full-text search on models with searchableJson fields returned empty results on DynamoDB + OpenSearch deployments. This affected the Website Builder’s page search, where the properties field stores page metadata as a searchable JSON object.
The underlying issue was that the search query targeted the object field name itself rather than its nested leaf values. Since OpenSearch cannot match text inside an object reference, every search query returned zero hits. DynamoDB-only deployments were unaffected because they flatten object values in memory during filtering.
The fix ensures searchableJson fields now resolve to their nested leaf values (values.<storageId>.*), restoring expected search behaviour across all deployment configurations.