Interface Result<T>

Result represents the core return result for an executed statement.

Type Parameters

  • T = unknown

Hierarchy

  • Result

Properties

Properties

error?: string

If there was an error, this will contain the error string.

meta: Metadata

Additional meta information.

results: T[]

Possibly empty list of query results.

success: boolean

Whether the query or transaction was successful.

Generated using TypeDoc