---
changelog:
  category: Release
  version: 1.6.4
date: '2025-07-03T08:31:40Z'
seo:
  description: >-
    Use .liveOptions to configure live queries for Event Iterator. Unlike
    .streamedOptions which accumulates chunks, live queries replace the entire
    result with…
title: v1.6.4
type: changelog
---
### Live Query Options [docs](https://orpc.dinwwwh.com/docs/integrations/tanstack-query#live-query-options)

Use `.liveOptions` to configure live queries for Event Iterator. Unlike `.streamedOptions` which accumulates chunks, live queries replace the entire result with each new chunk received

```ts
const query = useQuery(orpc.live.experimental_liveOptions({
  input: { id: 123 }, // Specify input if needed
  context: { cache: true }, // Provide client context if needed
  // additional options...
}))
```

### &nbsp;&nbsp;&nbsp;🚀 Features

- **tanstack-query**: Live query options &nbsp;-&nbsp; by @dinwwwh in https://github.com/middleapi/orpc/issues/721 [<samp>(25156)</samp>](https://github.com/middleapi/orpc/commit/251560db)

##### &nbsp;&nbsp;&nbsp;&nbsp;[View changes on GitHub](https://github.com/middleapi/orpc/compare/v1.6.3...v1.6.4)
