标签: amazon-dynamodb boto3
我有一个名为user的表,其中包含1个哈希键user_id和1个GSI email。我正在尝试使用GSI查询记录。以下是我正在使用的查询。该查询无法正常工作,我有什么想念吗?
user
user_id
email
results = table.query( IndexName='userTable-index', KeyConditionExpression=Key('email').eq('test@gmail.com') )