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.
DataQueryError interface
Signature
export interface DataQueryError
Import
import { DataQueryError } from '@grafana/data';
Properties
Property | Type | Description |
---|---|---|
data | { message?: string; error?: string; } | |
message | string | |
refId | string | |
status | string | |
statusText | string | |
type | DataQueryErrorType |
data property
Signature
data?: {
message?: string;
error?: string;
};
message property
Signature
message?: string;
refId property
Signature
refId?: string;
status property
Signature
status?: string;
statusText property
Signature
statusText?: string;
type property
Signature
type?: DataQueryErrorType;