mirror of https://github.com/grafana/grafana.git
63 lines
1.2 KiB
Markdown
63 lines
1.2 KiB
Markdown
|
+++
|
||
|
# -----------------------------------------------------------------------
|
||
|
# Do not edit this file. It is automatically generated by API Documenter.
|
||
|
# -----------------------------------------------------------------------
|
||
|
title = "QueryResultMeta"
|
||
|
keywords = ["grafana","documentation","sdk","@grafana/data"]
|
||
|
type = "docs"
|
||
|
draft = true
|
||
|
+++
|
||
|
|
||
|
## QueryResultMeta interface
|
||
|
|
||
|
<b>Signature</b>
|
||
|
|
||
|
```typescript
|
||
|
export interface QueryResultMeta
|
||
|
```
|
||
|
<b>Import</b>
|
||
|
|
||
|
```typescript
|
||
|
import { QueryResultMeta } from '@grafana/data';
|
||
|
```
|
||
|
<b>Properties</b>
|
||
|
|
||
|
| Property | Type | Description |
|
||
|
| --- | --- | --- |
|
||
|
| [custom](#custom-property) | <code>Record<string, any></code> | |
|
||
|
| [limit](#limit-property) | <code>number</code> | |
|
||
|
| [requestId](#requestid-property) | <code>string</code> | |
|
||
|
| [searchWords](#searchwords-property) | <code>string[]</code> | |
|
||
|
|
||
|
### custom property
|
||
|
|
||
|
<b>Signature</b>
|
||
|
|
||
|
```typescript
|
||
|
custom?: Record<string, any>;
|
||
|
```
|
||
|
|
||
|
### limit property
|
||
|
|
||
|
<b>Signature</b>
|
||
|
|
||
|
```typescript
|
||
|
limit?: number;
|
||
|
```
|
||
|
|
||
|
### requestId property
|
||
|
|
||
|
<b>Signature</b>
|
||
|
|
||
|
```typescript
|
||
|
requestId?: string;
|
||
|
```
|
||
|
|
||
|
### searchWords property
|
||
|
|
||
|
<b>Signature</b>
|
||
|
|
||
|
```typescript
|
||
|
searchWords?: string[];
|
||
|
```
|