We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hey,
The OpenAPI specs outline a way to serialize exploded object query parameters. This means that with a spec like the following:
query-parameters -> {shape: "square", color: "red"}
parameters: - in: query name: query-parameters schema: type: object properties: shape: type: string color: type: string style: form explode: true
You should be able to make requests like so: request?shape=square&color=red
request?shape=square&color=red
With explode=true and style=form, the library should deserialise this to an object like {shape: "square", color: "red"}
explode=true
style=form
{shape: "square", color: "red"}
This currently isn't supported by openapi-backend. Is this intentional?
If not, I'd be happy to make a PR. Great library btw ❤️
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hey,
The OpenAPI specs outline a way to serialize exploded object query parameters. This means that with a spec like the following:
query-parameters -> {shape: "square", color: "red"}
You should be able to make requests like so:
request?shape=square&color=red
With
explode=true
andstyle=form
, the library should deserialise this to an object like{shape: "square", color: "red"}
This currently isn't supported by openapi-backend. Is this intentional?
If not, I'd be happy to make a PR.
Great library btw ❤️
The text was updated successfully, but these errors were encountered: