Package version:

Contains the tables, columns & rows resulting from a query.

interface BatchQueryResults {
    error?: ErrorInfo;
    render?: any;
    statistics?: any;
    tables?: {};
}

Properties

error?: ErrorInfo

The code and message for an error.

render?: any

Visualization data in JSON format.

statistics?: any

Statistics represented in JSON format.

tables?: {}

The results of the query in tabular format.