Amazon DynamoDB scan operation allows you to query nested attributes like Array or Object ? For example,
{ Id: 206, Title: "20-Bicycle 206", Description: "206 description", RelatedItems: [ 341, 472, 649 ], Pictures: { FrontView: "123", RearView: "456", SideView: "789" } }
Can I request attributes of RelatedItems[2] or Pictures.RearView ?
amazon-dynamodb
Hiren
source share