nestjsx / crud

NestJs CRUD for RESTful APIs
https://github.com/nestjsx/crud/wiki
MIT License
4.04k stars 533 forks source link

Issue in using OR operator in params #747

Open rinkal-gohel opened 2 years ago

rinkal-gohel commented 2 years ago

I want to use OR operator in params.

current Url is like this:- admin-panel/super-admin/admins?page=2&limit=10&sort[0]=createdAt,DESC&filter[0]=lastName||$contL||abc Making this Url in frontend and passing to backend Now i want to make URL of (firstName= ABC or Lastname = ABC or email= ABC) . but when I use Or operator it is not working. Which operator I should use? it's not working in the filter. Can anyone help me with this?

Thanking you in anticipation.