OR operator in json-server
11:09 10 Jun 2019

I can fetch data from json-server (fake server) by calling:

http://localhost:3000/posts?title_like=head&comments_like=today

This will return records where title likes "head" AND comments like "today". What if I want not AND but OR operator?

javascript json npm json-server