You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe. A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
You should be able to specify query params multiple times.
Describe the solution you'd like A clear and concise description of what you want to happen
query should be able to take a list[string] in addition to the map[string, string], where each string is a key=value format (similar to docker-compose's environment mapping). This would allow you to specify a query param multiple times. When constructing the URL, the repeated param would simply be repeated.
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
You should be able to specify query params multiple times.
Describe the solution you'd like
A clear and concise description of what you want to happen
query
should be able to take alist[string]
in addition to themap[string, string]
, where each string is akey=value
format (similar to docker-compose'senvironment
mapping). This would allow you to specify a query param multiple times. When constructing the URL, the repeated param would simply be repeated.This would render to this URL:
<host>/get_data?a=1&b=1&a=1
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered
Simply allowing duplicate keys. This doesn't work because the YAML spec requires keys to be unique.
Additional context
Add any other context or screenshots about the feature request here
Maintaining
mapping[string, string]
support is important for backward compatibilityThe text was updated successfully, but these errors were encountered: