Closed bauerji closed 4 years ago
Added functionality to use list fields in query params.
When using query model
class QueryMode(BaseModel): a: List[str]
the api call /whatever_endpoint?a=one&a=two results in request.query_params.a having the value ["one", "two"]
/whatever_endpoint?a=one&a=two
request.query_params.a
["one", "two"]
closes #7
Kudos, SonarCloud Quality Gate passed!
0 Bugs 0 Vulnerabilities (and 0 Security Hotspots to review) 0 Code Smells
No Coverage information 0.0% Duplication
Added functionality to use list fields in query params.
When using query model
the api call
/whatever_endpoint?a=one&a=two
results inrequest.query_params.a
having the value["one", "two"]
closes #7