Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions core/filters.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ The search filter supports exact and partial matching strategies.
If the partial strategy is specified, an SQL query with a `WHERE` clause similar
to `LIKE %text to search%` will be automatically issued.

If you need case insensitive search, prefix the strategy with the letter `i`, for example `ipartial` will generate the sql clause `WHERE LOWER(property) LIKE LOWER(%binded%)`. Don't forget to use function indexes or you'll hit performance issues!

In the following, we will see how to allow filtering a list of e-commerce offers:

```yaml
Expand Down