Ho do you configure the app to have following features:
Have an api-endpoint defined as
app.add_route('/v1/tablets', TabletsCollection())
And still be able to use QueryParams like this
https://example.com/api/v1/tablets?limit=12&offset=50&q=tablet name
the Collection has two methods on_get
for retrieving the whole list and using the filter and on_post
for the creation of a single record.
I've been searching the net for some time, how do you get query_string and properly parsed params?