Is calling functions within `queryFn` a bad design?
We use a combination of zod, react-hook-form, and react-query to populate, validate, control, and save our forms. Currently we're doing something like this for populating the schema:
Is calling
Is calling
reset from within queryFn a bad idea? Is there any point for me to return details if I never use the data object or care about its cache?