We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5217c1 commit 8acd39eCopy full SHA for 8acd39e
UPGRADING.md
@@ -537,7 +537,9 @@ await ddbDocClient.send(
537
TableName,
538
Item: {
539
id: "123",
540
- content: undefined // This value will be automatically omitted
+ array: [1, undefined], // The undefined value will be automatically omitted.
541
+ map: { key: undefined }, // The "key" will be automatically omitted.
542
+ set: new Set([1, undefined]), // The undefined value will be automatically omitted.
543
};
544
})
545
);
0 commit comments