Support array query parameters with explode #831
bowenwr
started this conversation in
Feature request
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is your feature request related to a problem? Please describe.
Given an array query parameter with explode set to false, we'd like to generate a client that handles it properly. For instance, with a parameter:
The client currently appends the parameter to the query string multiple times like
?multipleIds=1&multipleIds=2
Describe the solution you'd like
Given the above example, the client should generate a URL with a query string like
?multipleIds=1,2
Beta Was this translation helpful? Give feedback.
All reactions