Skip to main content

Type alias: ExecuteResult

ExecuteResult: {"returning": unknown[];"rowsAffected": number; }

The result of an execution, containing information about the affected rows and any returned values.

Type declaration

returning

returning: unknown[]

Any values returned by the operation.

rowsAffected

rowsAffected: number

The number of rows affected by the operation.

Source

packages/verse-core/src/db/driver.ts:44