You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When querying OpenProject api for tasks, only 20 are returned by default. This behaviour can be changed modifying the query parameter pageSize, but it could lead to instability: for more than 20 tasks the json becomes very heavy.
Possible solution: filter the query to return only the work packages ids, then for each id -> query a single package. It will take more time to start up the system, but it is scalable and accepts infinite work packages
The text was updated successfully, but these errors were encountered:
When querying OpenProject api for tasks, only 20 are returned by default. This behaviour can be changed modifying the query parameter pageSize, but it could lead to instability: for more than 20 tasks the json becomes very heavy.
Possible solution: filter the query to return only the work packages ids, then for each id -> query a single package. It will take more time to start up the system, but it is scalable and accepts infinite work packages
The text was updated successfully, but these errors were encountered: