React Query client and caller client under one object
Would love to know if it is possible to have caller and react query clients under one object?
I feel like it would be great to go api.cart.getCartItems() in server components that would utilise caller and api.card.getCartItems.useQuery() in client components.
3 Replies
I use the
createTRPCProxyClient
to create a seperate caller. So I use useQuery where needed & caller where I need the async
flow...why use createTRPCProxyClient over just appRouter.createCaller({})
I am not sure I understand. This is my setup. How do create a client without using
react-query
?
Thanks 🙂