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;