I want to implement a system for query conditions in requests.
for example, if I want to say get objects with the id of less than 2 send this request.
https://example.com/getObjects?id_less=2
Is there any way to do this in nestJS or express or anything else... . Or I should create this by myself?
Thanks in advance