Files
lancedb/docs/src/javascript/interfaces/UpdateArgs.md
Lei Xu 9a9fc77a95 doc: improve docs for nodejs connect functions (#833)
* improve the docstring for NodeJS connect functions and
`ConnectOptions` parameters.
* Simplify `npm run build` steps.
2024-01-19 16:07:53 -08:00

754 B

vectordb / Exports / UpdateArgs

Interface: UpdateArgs

Table of contents

Properties

Properties

values

values: Record<string, Literal>

A key-value map of updates. The keys are the column names, and the values are the new values to set

Defined in

index.ts:454


where

Optional where: string

A filter in the same format used by a sql WHERE clause. The filter may be empty, in which case all rows will be updated.

Defined in

index.ts:448