Skip to main content

Interface: Result<T>

Result represents the core return result for an executed statement.

Type parameters

NameType
Tunknown

Properties

error

error: undefined

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

Defined in

@tableland/sdk/src/registry/utils.ts:169


meta

meta: Metadata

Additional meta information.

Defined in

@tableland/sdk/src/registry/utils.ts:173


results

results: T[]

Possibly empty list of query results.

Defined in

@tableland/sdk/src/registry/utils.ts:159


success

success: true

Whether the query or transaction was successful.

Defined in

@tableland/sdk/src/registry/utils.ts:163