I have a map within DDB, with various nested attributes. The map itself is called 'state', and has a nested property within called 'prop'.
I want to filter for all results that "contains" (within the dropdown) X within prop.
Unfortunately, I've tried various ways such as:
state.prop "CONTAINS" X
state.#prop "CONTAINS" X
I just can't seem to filter by anything other than the primary key. Any sort of nested filter, or a filter on any other column returns 0 results (when some definitely exist).
The majority of the examples are code or CLI based, not the DDB UI.
Please can someone provide me with an example of filtering through a map, on DDB, within AWS Console.
Many thanks.