How can I search with "LIKE" operator in strapi?

Using Rest API?

I’d say use the $contains filter operator.

GET /api/:pluralApiId?filters[field][$contains]=value

Looks similar for Entity Service and Query Engine, best to check out the corresponding docs.

1 Like