RFC 10008: The HTTP QUERY Method - Blain Smith

@blainsmith I mean, you could send your parameters in the query part of the URL.
It breaks the format used everywhere else as instead of sending json, you send URL encoded values, but it works.

What's your opinion on this?

@dolanor You can, but QUERY is made more for programmatic instances where payloads are more complex than just query params. GraphQL is the most immediate thing benefiting from this since that requires body data for fetching data from an API.

@blainsmith true, that is great for GraphQL.

Well I guess I need to add that to my web framework.