Files
grafana/docs/sources/packages_api/data/dataqueryerror.md
Marcus Andersson cc3fc18076 Docs: enable packages reference docs for 7-beta (#23953)
* added packages reference menu item.

* removed the draft flag.

* Updated docs by running script.
2020-04-28 09:53:58 +02:00

83 lines
1.6 KiB
Markdown

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