Replies: 1 comment
-
This is currently broken still as of april 2025 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm using @urql/next: "^1.1.1" and urql: "^4.0.6".
My client setup for SSR is the following
Now when I am doing a query, every fetch is done twice. Once from the component file (e.g.
projects.tsx
) where the query is done usingand once from
urql-core-chunk.mjs
.When I use request policy
cache-first
only one API call fromprojects.tsx
shows up in the network inspector. As a sidenote, if I switch to request policynetwork-only
then I get an infinite loop of API calls.Beta Was this translation helpful? Give feedback.
All reactions