I'm trying to query all the Food values in the "Categories" attribute and the "review_count" attribute values that are at least 100. My first time working with scanning tables in DynamoDB through python. I need to use the table.scan
function as well. This is what I have tried so far.
resp = table.scan(FilterExpression='(categories = cat1) AND' + '(review_count >= 100)',
ExpressionAttributeValues={
':cat1': 'Food',
})
Any help would be greatly appreciated. Thanks