Type Alias QueryBatchResult<T>Beta

QueryBatchResult<T>: (QuerySuccessResult<T> | QueryErrorResult) & {
    query_id: string;
}

Type representing a batch query result, which includes a query ID.

Type Parameters

  • T

    The type of the data returned in case of success.

Type declaration

  • Betaquery_id: string

    The ID of the query.