Hi EnviousStarfish54 ,
You can use task_filter
parameter for filter and order the tasks.
Can this do the trick?
It's for addition filtering only right? My use case is to prevent user accidentally querying the entire database.
I want to achieve something similar we would do in SQL
select * from user_query limit 100;
I don't want user making heavy requests
You can add a limitation to the query page size:task_filter = {"page_size": <your-limit>, "page": 0}
what do you think?