Type alias TableInsertOneOptions

TableInsertOneOptions: GenericInsertOneOptions
Overview

The options for an insertOne command on a Table.

Example

const result = await table.insertOne({
id: 'john1234'
name: 'John',
}, {
timeout: 10000,
});

Datatypes

See Table's documentation for information on the available datatypes for tables.

See

  • Table.insertOne
  • TableInsertOneResult