Would you like to clone this notebook?

When you clone a notebook you are able to make changes without affecting the original notebook.

Cancel

RunKit + npm: @aws/dynamodb-expressions

node v8.17.0
version: 1.0.0
endpointsharetweet
const { AttributePath, ExpressionAttributes, MathematicalExpression, UpdateExpression, } = require("@aws/dynamodb-expressions") const attributes = new ExpressionAttributes; const updateExpression = new UpdateExpression; updateExpression.set('Replies', new MathematicalExpression(new AttributePath('Replies'), '+', 33)); console.log(updateExpression.serialize(attributes)); console.log(attributes.names); console.log(attributes.values); console.log(attributes.values[':val1']);
Created from: https://npm.runkit.com/@aws/dynamodb-expressions
Loading…

no comments

    sign in to comment