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
This is to extend the ability of the GET /tasks API from the backend to also support filtering by parameters passed as queries.
The functioning would be as follows:-
If no query parameters passed i.e limit or offset then the response will get all the tasks there are in the database or default to a no. of documents to return.
If query parameters limit and offset is passed then it would return all the documents which are created after the created time of the <task_object> whose id = offset, plus would only return n no. of documents where n = limit and therefore would also work as a paginated API.
The text was updated successfully, but these errors were encountered:
This is to extend the ability of the
GET /tasks
API from the backend to also support filtering by parameters passed as queries.The functioning would be as follows:-
limit or offset
then the response will get all the tasks there are in the database or default to a no. of documents to return.limit and offset
is passed then it would return all the documents which are created after the created time of the <task_object> whoseid = offset
, plus would only returnn
no. of documents wheren = limit
and therefore would also work as a paginated API.The text was updated successfully, but these errors were encountered: