Framework
Version

queryOptions

tsx
queryOptions({
  queryKey,
  ...options,
})
queryOptions({
  queryKey,
  ...options,
})

Options

You can generally pass everything to queryOptions that you can also pass to useQuery. These options can be shared across hooks and imperative APIs such as queryClient.query.

  • queryKey: QueryKey
    • Required
    • The query key to generate options for. //: # 'Materials'

Further reading

To learn more about QueryOptions, have a look at this article by TkDodo The Query Options API.