Interface BatchQueryResult

The result of a single query within a batch.

interface BatchQueryResult {
    error?: Error;
    label?: string;
    response?: HonuaQueryResponse;
}

Properties

error?: Error

The error thrown by the query, or undefined if the query succeeded.

label?: string

The label from the corresponding BatchQueryItem, if provided.

The successful query response, or undefined if the query failed.