Suppose I have the following database schema for each item:
{
config: [
{
value1: "value_1"
value2: "value_2"
}
]
}
For each item in the database, there is a field config with each of the item in its list being an object. Are there any AWS DynamoDB query methods or filter expressions to filter an item by matching the value1 field in the config list? Thank you everyone for your help!