🐛 Fixes issue handling response when json property is not set (#2318)

Also fixes an small bug reading the keyCondtionExpression parameter
This commit is contained in:
Ricardo Espinoza
2021-10-13 19:36:33 -04:00
committed by GitHub
parent 71d7ed1164
commit e296b02185
2 changed files with 2 additions and 2 deletions

View File

@@ -312,7 +312,7 @@ export class AwsDynamoDB implements INodeType {
if (scan === true) {
body['FilterExpression'] = this.getNodeParameter('filterExpression', i) as string;
} else {
body['KeyConditionExpression'] = this.getNodeParameter('KeyConditionExpression', i) as string;
body['KeyConditionExpression'] = this.getNodeParameter('keyConditionExpression', i) as string;
}
const {