Type Alias QueryErrorResultBeta

QueryErrorResult: {
    data: string;
    status: "error";
}

Type representing an error query result.

Type declaration

  • Betadata: string

    The error message or data.

  • Betastatus: "error"

    The status of the query result, always 'error' for this type.