dynoexpr
dynoexpr copied to clipboard
Expression builder for AWS.DynamoDB.DocumentClient
We're only using the AWS-SDK to create a DynamoDBSet. Let's try and emulate it and drop the dependency
When creating sets via `DynamoDB.DocumentClient.prototype.addSet` directly, users are able to pass options in the shape of `{ validate: true }` to perform client-side validation that the Set is homogenous before...
for following expression ``` const params = dynoexpr({ KeyCondition: { id: '567' }, Condition: { ip: ' 10.10.10.10' }, Filter: { color: 'blue' }, Projection: ['weight', 'size'], }); console.log(params); ```...