-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Swagger definitions don't handle parameters that are not explicitly required in the url #159
Comments
I'd like to add my support for this. Right now no query parameters are added at all for the generated |
The workaround right now is to pretty much use POST for all your HTTP endpoints, as far as I can tell. I second the need for this fix. |
Opened a PR that attempts to address this #199 |
+1 |
+1, We really need something like below working
|
I think that issue can be closed? |
Yep, I think this can be closed. Thanks! |
This should enable a HTTP JSON to RPC mapping as below:
GET /v1/messages/123456?revision=2&sub.subfield=foo
GetMessage(message_id: "123456" revision: 2 sub: SubMessage(subfield: "foo"))
Presently it does not work
The text was updated successfully, but these errors were encountered: