The options for an insertOne command on a Table.
insertOne
const result = await table.insertOne({ id: 'john1234' name: 'John',}, { timeout: 10000,}); Copy
const result = await table.insertOne({ id: 'john1234' name: 'John',}, { timeout: 10000,});
See Table's documentation for information on the available datatypes for tables.
Overview
The options for an
insertOne
command on a Table.