How to call TRPC query from function instead of inside the react component itself.

So essentially I have a trpc query like this const {data} = await trpc.events.getRSVPsByUser.useQuery(userId); however I do not want this query to execute the moment that the page loads, I want to wait until a button is pressed for it, similarly to the way that useMutation works Is there a way to do something like this: const response = await trpc.events.getRSVPsByUser.query(userId);
1 Reply
Xanacas
Xanacas3w ago
You can pass useQuery an enabled=false and enable it when pressing the button

Did you find this page helpful?