Replies: 1 comment 1 reply
-
There's some notes on this here which haven't made it into the docs yet: #3073 |
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
-
Hey,
I am dealing with a Contentful CMS query limit with is 8KB per query string size and I have to do a very long query, investigating I found that you can compress/minify GraphQL requests, but when I try to do it, looks like urql/core in some way rebuild the query and sends it with lots of /n and empty spaces, increasing the size of my query from 5KB, to 9KB, so I still blocked with this query.
Is there a way I can compress the queries? I was thinking in rewritting the fetchExchange which looks like it is the one is recomposing the query making it big again.
Suggestions?
Beta Was this translation helpful? Give feedback.
All reactions