Minor Changes
- A
useClientHandle()
function has been added. This creates ahandle
on which alluse*
hooks can be called, likeawait handle.useQuery(...)
orawait handle.useSubscription(...)
which is useful for sequentially chaining hook calls in anasync setup()
function or preserve the right instance of aClient
across lifecycle hooks, by @kitten (See #1599)