You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
I am trying use URQL inside a React component Astro project, but using
useQuerygives following errorWhich make sense in Astro project I do not have root component. I tried to use
still gives the same error, as I searched I found there is no API to pass client object to
useQueryhook. There was suggestion for multiple clients but it was rejected, Apollo client supports client objectCurrent solution seems to be
Disadvantages with this is it does not give you the
fetchingstate andrefetchingfunction.Is there any other way to solve this problem?
All reactions