I have below table in DynamoDB
{
"id": 1,
"user": {
"age": "26",
"email": "testuser@gmail.com",
"name": "test user"
}
}
Using AWS console, I want to scan all the records whose email address contains gmail.com
I am trying this but it is giving no results.
I am new to AWS, not sure what's wrong here. Is it not possible to scan on nested fields?