Package version:

A query to execute as part of a batch.

interface QueryBatch {
    additionalWorkspaces?: {};
    includeQueryStatistics?: boolean;
    includeVisualization?: boolean;
    query: string;
    serverTimeoutInSeconds?: number;
    timespan: QueryTimeInterval;
    workspaceId: string;
}

Properties

additionalWorkspaces?: {}

A list of workspaces to query in addition to the primary workspace.

includeQueryStatistics?: boolean

Whether to include query statistics in the response.

includeVisualization?: boolean

Whether to include visualization data in the response.

query: string

The Analytics query to execute.

serverTimeoutInSeconds?: number

The server timeout in seconds.

The timespan for the query.

workspaceId: string

The workspace ID to query.