# BTreeRangeQueryOptions

# Interface: BTreeRangeQueryOptions

Defined in: [packages/db/src/indexes/btree-index.ts:24](https://github.com/TanStack/db/blob/main/packages/db/src/indexes/btree-index.ts#L24)

Options for range queries

## Properties

### from?

```ts
optional from: any;
```

Defined in: [packages/db/src/indexes/btree-index.ts:25](https://github.com/TanStack/db/blob/main/packages/db/src/indexes/btree-index.ts#L25)

***

### fromInclusive?

```ts
optional fromInclusive: boolean;
```

Defined in: [packages/db/src/indexes/btree-index.ts:27](https://github.com/TanStack/db/blob/main/packages/db/src/indexes/btree-index.ts#L27)

***

### to?

```ts
optional to: any;
```

Defined in: [packages/db/src/indexes/btree-index.ts:26](https://github.com/TanStack/db/blob/main/packages/db/src/indexes/btree-index.ts#L26)

***

### toInclusive?

```ts
optional toInclusive: boolean;
```

Defined in: [packages/db/src/indexes/btree-index.ts:28](https://github.com/TanStack/db/blob/main/packages/db/src/indexes/btree-index.ts#L28)
