This repository was archived by the owner on Mar 18, 2019. It is now read-only.
This repository was archived by the owner on Mar 18, 2019. It is now read-only.
Support repeating query string params #36
Open
Description
Is it currently possible to build a request like:
http://my-app.com/?filter=1&filter=2&filter=3
In Django you can use request.query_params.getlist('filter')
to return a list of [1,2,3]
However I'm not sure this is supported with the core api clients.
Seems to be because you can only have one filter property in the list of params:
if (field.location === 'query') {
queryParams[field.name] = params[field.name];
...
The each filter is replaced with the next one.
Metadata
Metadata
Assignees
Labels
No labels