DataQueryError interface

Signature

  1. export interface DataQueryError

Import

  1. import { DataQueryError } from '@grafana/data';

Properties

PropertyTypeDescription
data{
message?: string;
error?: string;
}
messagestring
refIdstring
statusnumber
statusTextstring
typeDataQueryErrorType

data property

Signature

  1. data?: {
  2. message?: string;
  3. error?: string;
  4. };

message property

Signature

  1. message?: string;

refId property

Signature

  1. refId?: string;

status property

Signature

  1. status?: number;

statusText property

Signature

  1. statusText?: string;

type property

Signature

  1. type?: DataQueryErrorType;