OR operator in json-server
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?