# BTreeRangeQueryOptions

# Interface: BTreeRangeQueryOptions

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)

Options for range queries

## Properties

### from?

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

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)

***

### fromInclusive?

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

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

***

### to?

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

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

***

### toInclusive?

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

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