Menu
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.
Enterprise
Open source
toDataQueryResponse() function
toDataQueryResponse() function
Parse the results from /api/ds/query into a DataQueryResponse
Signature
typescript
export declare function toDataQueryResponse(res: {
data: BackendDataSourceResponse | undefined;
} | FetchResponse<BackendDataSourceResponse | undefined> | DataQueryError, queries?: DataQuery[]): DataQueryResponse;Import
typescript
import { toDataQueryResponse } from '@grafana/runtime';Parameters
| Parameter | Type | Description |
|---|---|---|
| res | {data: BackendDataSourceResponse | undefined;} | FetchResponse<BackendDataSourceResponse | undefined> | DataQueryError | the HTTP response data. |
| queries | DataQuery[] | optional DataQuery array that will order the response based on the order of query refId’s. |
Returns:
DataQueryResponse
Was this page helpful?
Related resources from Grafana Labs
Additional helpful documentation, links, and articles:
Scroll for more