Documentation for automated readers
A curated documentation index is available at: https://grafana.com/llms.txt
A complete documentation index is available at: https://grafana.com/llms-full.txt
These indexes can help with page discovery before fetching individual documents.
This page is also available in Markdown, which may be easier for automated readers and AI tools to parse than HTML. The Markdown version is available at https://grafana.com/docs/grafana/v8.2/packages_api/data/dataqueryrequest.md, or by sending Accept: text/markdown to https://grafana.com/docs/grafana/v8.2/packages_api/data/dataqueryrequest/. For broader documentation discovery, the curated index is available at https://grafana.com/llms.txt and the complete index is available at https://grafana.com/llms-full.txt.
Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.
DataQueryRequest interface
Signature
export interface DataQueryRequest<TQuery extends DataQuery = DataQuery> Import
import { DataQueryRequest } from '@grafana/data';Properties
| Property | Type | Description |
|---|---|---|
| app | CoreApp | string | |
| cacheTimeout | string | |
| dashboardId | number | |
| endTime | number | |
| interval | string | |
| intervalMs | number | |
| liveStreaming | boolean | |
| maxDataPoints | number | |
| panelId | number | |
| range | TimeRange | |
| rangeRaw | RawTimeRange | |
| requestId | string | |
| reverse | boolean | |
| scopedVars | ScopedVars | |
| startTime | number | |
| targets | TQuery[] | |
| timeInfo | string | |
| timezone | string |
app property
Signature
app: CoreApp | string;cacheTimeout property
Signature
cacheTimeout?: string;dashboardId property
Signature
dashboardId?: number;endTime property
Signature
endTime?: number;interval property
Signature
interval: string;intervalMs property
Signature
intervalMs: number;liveStreaming property
Signature
liveStreaming?: boolean;maxDataPoints property
Signature
maxDataPoints?: number;panelId property
Signature
panelId?: number;range property
Signature
range: TimeRange;rangeRaw property
Signature
rangeRaw?: RawTimeRange;requestId property
Signature
requestId: string;reverse property
Signature
reverse?: boolean;scopedVars property
Signature
scopedVars: ScopedVars;startTime property
Signature
startTime: number;targets property
Signature
targets: TQuery[];timeInfo property
Signature
timeInfo?: string;timezone property
Signature
timezone: string;