Madison Blake
Results
1
comments of
Madison Blake
In accordance to @markbiddlecom suggestion the following command works with non-modified package: ``` AWSDynamoDB.Query({"TableName":"MyTable", "KeyConditionExpression":"ID=:id","ExpressionAttributeValues":{":id":{"S":"MyValue"}}}) .then((response) => { console.log(response); } }); ``` Is the need for `{"S":"MyValue"}` documented anywhere? I...