Strapi graphql OR operator for where clause

actually, I dunno if it’s totally related now to GraphQL.

I replaced these GraphQL queries with conventional rest endpoints, and I am still getting the same error as I was with Apollo.

I am trying examples from this complex queries documentation but both the implicit and the explicit OR syntax also return only filters that match to all query params (implicit AND).

implicit OR syntax

`${API_URL}/?name_contains=${searchKeyword}&fk_catgory.name=${searchKeyword}``

works just fine with either of these individual queries by themselves.

explicit OR syntax

const query = qs.stringify({ 
  _where: { _or: [{ name_contains: searchKeyword }, { fk_catgory: { name: searchKeyword } }] } 
});