-
Notifications
You must be signed in to change notification settings - Fork 9.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add QUERY method support #8550
base: master
Are you sure you want to change the base?
Add QUERY method support #8550
Conversation
It seems like it's still a draft https://datatracker.ietf.org/doc/draft-ietf-httpbis-safe-method-w-body/ But overall, we've added verbs for WebDav #1901 |
@swankjesse any objection? |
Just wanted to note that Node already shipped support for it |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to validate that GET and QUERY calls to the same URL are cached independently
Fixes #8380.
This PR adds a new public method,
query(RequestBody)
, to perform a request using the QUERY method. It also enables cache support for QUERY requests.