我正在控制台中测试查询,并希望在我的代码中实现它们。我很好奇如何在我的 Node.js 代码中得到这个。我认为这与它有关,QueryFilter
但我很难得到它。
let params = {
TableName: tableName,
KeyConditionExpression:
'TimeId = :timeId and begins_with ( TypeKey , :typeKey) ',
QueryFilter: ?,
ExpressionAttributeValues: {
':timeId': `${year}-${week}`,
':typeKey': 'GA',
},
};