Replies: 1 comment 1 reply
-
First of all and unrelated, just to point this out 😅 {
exchanges: [cacheExchange, fetchExchange, retryExchange({ initialDelayMs: 100, maxNumberAttempts: 5 })],
requestPolicy: "cache-and-network",
}
This error in general could be caused by caused by three conditions (afaik), without looking into this too much:
e.g., see: nodejs/node-v0.x-archive#6779 alternatively, you could try a different |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Trying to query an endpoint which enforces ssl on locahost:8000 (or 0.0.0.0:8000, or 127.0.0.1:8000) causes urql to error:
This request appears like so on my Saleor api endpoint:
api_1 | [2024-02-02 10:59:27 +0000] [25] [WARNING] Invalid HTTP request received.
I'm using Astrojs + urql/core.
I have a nanostore for my urql client, which I initialise like so:
connect.ts
server-client.ts
Then use like so in my SSR astro pages:
pages/index.astro
Beta Was this translation helpful? Give feedback.
All reactions