Skip to main content

Interface: Result<T>

Result represents the core return result for an executed statement.

Type parameters

NameType
Tunknown

Properties

error

Optional error: string

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

Defined in

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


meta

meta: Metadata

Additional meta information.

Defined in

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


results

results: T[]

Possibly empty list of query results.

Defined in

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


success

success: boolean

Whether the query or transaction was successful.

Defined in

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