Aled Treharne
Results
2
comments of
Aled Treharne
You should already be able to do this by specifying sorting attributes on the query being passed. From teh SQLALchemy example, for example: ``` @app.get("/users/default", response_model=Page[UserOut]) @app.get("/users/limit-offset", response_model=LimitOffsetPage[UserOut]) def get_users(db:...
> I think this is an interesting use case, but I don't know how popular of a use case it is. Because of the complexity of the feature, I would...