+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "DataQueryError"
keywords = ["grafana","documentation","sdk","@grafana/data"]
type = "docs"
+++
## DataQueryError interface
Signature
```typescript
export interface DataQueryError
```
Import
```typescript
import { DataQueryError } from '@grafana/data';
```
Properties
| Property | Type | Description |
| --- | --- | --- |
| [cancelled](#cancelled-property) | boolean
| |
| [data](#data-property) | {
message?: string;
error?: string;
}
| |
| [message](#message-property) | string
| |
| [refId](#refid-property) | string
| |
| [status](#status-property) | string
| |
| [statusText](#statustext-property) | string
| |
### cancelled property
Signature
```typescript
cancelled?: boolean;
```
### data property
Signature
```typescript
data?: {
message?: string;
error?: string;
};
```
### message property
Signature
```typescript
message?: string;
```
### refId property
Signature
```typescript
refId?: string;
```
### status property
Signature
```typescript
status?: string;
```
### statusText property
Signature
```typescript
statusText?: string;
```