Skip to content

Allow json/BaseModels in query parameters #884

Closed
@luckydonald

Description

@luckydonald

Is your feature request related to a problem

I have to support getting a structured json string as parameter:
Screenshot 2020-01-17 at 22 08 55

https://localhost:8080/test?moop={"name": "something %26 something else","description": "str" ,"price": 0.2,"tax": 0.2}&foo=bar

I would like to have a easy validation for those fields as well, as this could be automatic

The solution you would like

@routes.api_route('/test', methods=['GET', 'POST'], tags=['official', 'message', 'send'])
async def test(
    moop: Json[Item] = Query(..., description='Something something'),
    foo: str = Query(...),
):
    return {'woop': moop, 'lol': foo}
# end def
Initial version:

This was the initial thought, before I discovered the Json type.

@routes.api_route('/test', methods=['GET', 'POST'], tags=['official', 'message', 'send'])
async def test(
    moop: Item = Query(..., description='Something something'),
    foo: str = Query(...),
):
    return {'woop': moop, 'lol': foo}
# end def

Bug you face

AssertionError: Param: moop can only be a request body, using Body(...)

Describe alternatives you've considered

    moop: str

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions