Skip to content

Files

Latest commit

 

History

History
21 lines (15 loc) · 458 Bytes

QueryObserver.md

File metadata and controls

21 lines (15 loc) · 458 Bytes
id title
QueryObserver
QueryObserver

QueryObserver

The QueryObserver can be used to observe and switch between queries.

const observer = new QueryObserver(queryClient, { queryKey: ['posts'] })

const unsubscribe = observer.subscribe((result) => {
  console.log(result)
  unsubscribe()
})

Options

The options for the QueryObserver are exactly the same as those of useQuery.