+++
# -----------------------------------------------------------------------
# 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
Signature
```typescript
export interface QueryResultMeta
```
Import
```typescript
import { QueryResultMeta } from '@grafana/data';
```
Properties
| Property | Type | Description |
| --- | --- | --- |
| [alignmentPeriod](#alignmentperiod-property) | string | |
| [custom](#custom-property) | Record<string, any> | DatasSource Specific Values |
| [gmdMeta](#gmdmeta-property) | any[] | Legacy data source specific, should be moved to custom |
| [json](#json-property) | boolean | |
| [limit](#limit-property) | number | |
| [notices](#notices-property) | QueryResultMetaNotice[] | Meta Notices |
| [query](#query-property) | string | |
| [rawQuery](#rawquery-property) | string | |
| [searchWords](#searchwords-property) | string[] | |
| [stats](#stats-property) | QueryResultMetaStat[] | Stats |
| [transformations](#transformations-property) | string[] | Used to track transformation ids that where part of the processing |
### alignmentPeriod property
Signature
```typescript
alignmentPeriod?: string;
```
### custom property
DatasSource Specific Values
Signature
```typescript
custom?: Record;
```
### gmdMeta property
Legacy data source specific, should be moved to custom
Signature
```typescript
gmdMeta?: any[];
```
### json property
Signature
```typescript
json?: boolean;
```
### limit property
Signature
```typescript
limit?: number;
```
### notices property
Meta Notices
Signature
```typescript
notices?: QueryResultMetaNotice[];
```
### query property
Signature
```typescript
query?: string;
```
### rawQuery property
Signature
```typescript
rawQuery?: string;
```
### searchWords property
Signature
```typescript
searchWords?: string[];
```
### stats property
Stats
Signature
```typescript
stats?: QueryResultMetaStat[];
```
### transformations property
Used to track transformation ids that where part of the processing
Signature
```typescript
transformations?: string[];
```