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.
This is to extend the ability of the
GET /tasksAPI from the backend to also support filtering by parameters passed as queries.The functioning would be as follows:-
limit or offsetthen the response will get all the tasks there are in the database or default to a no. of documents to return.limit and offsetis passed then it would return all the documents which are created after the created time of the <task_object> whoseid = offset, plus would only returnnno. of documents wheren = limitand therefore would also work as a paginated API.