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
When using useQuery, can we avoid dispatch calls here by passing in skipToken? The current implementation causes performance issues when multiple components call useQuery simultaneously, resulting in too many dispatches. This forces me to use useLazyQuery to control trigger timing. However, if skipToken could prevent these dispatch calls, I wouldn't need this workaround.