Let's say I have the following object that contains a key (body
) with a string object value:
{
id:'xxyyzz',
body:'{\'key1\':\'value1\',\'key2\':\'value2\'}'
}
There is any way to save it in DynamoDB with NodeJS PartiQL?
Because when I try to save it I get an error from the DynamoDB about the escaping in the string value of the body: Statement wasn't well formed, can't be processed
.
Any solutions for that?