Using HTTP:POST for `query`?
Hey guys, thanks for the awesome library!
My application involves making a
- Is it currently possible to use HTTP:POST for
- If not, is there any appetite to support it?
- It would be easier for batching use-cases ( since the size limits of the batch can be a lot larger by default ), reduced code-complexity over-all, and also be consistent with other RPC implementations that only use POST for all transport.
My application involves making a
query with a large amount of JSON data. However, since we use HTTP:GET under-the-hood for queries ( including batching ), I run into header length limits. Since we deploy to AWS, we are also restricted to the length limit imposed by Amazon ALB. Due to this, I have the following questions : - Is it currently possible to use HTTP:POST for
query and mutation? - If not, is there any appetite to support it?
- It would be easier for batching use-cases ( since the size limits of the batch can be a lot larger by default ), reduced code-complexity over-all, and also be consistent with other RPC implementations that only use POST for all transport.