# Make filters case insensitive

Filters on Forest Admin are case sensitive. If you search for 'forest', 'Forest' wouldn't come up in the results.

If you prefer the search to be case insensitive, you can override the default operators we provide and change their behavior.

In this example, we want to replace the `contains` operator to make it case insensitive on a SQL project using [Sequelize ORM](https://sequelize.org/master/manual/model-querying-basics.html#operators). We will then use the `Like` vs `iLike` operators.

You just have to add the following lines to your `app.js` file.

{% code title="app.js" %}

```javascript
...

const Sequelize = require('sequelize');
const Operators = require('forest-express-sequelize/dist/utils/operators');

const options = { Sequelize: Sequelize };
const operators = Operators.getInstance(options);
operators.LIKE = Sequelize.Op.iLike;

...
```

{% endcode %}

#### Before

![](https://2793709227-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-M0vHiS-1S9Hw3djvoTw%2F-MS9PXH5Gvt_5dbxMX-R%2F-MS9RtIjZctOeAeYwMgL%2Fimage.png?alt=media\&token=0364a06b-db09-44da-beec-18d6868ba147)

#### After

![](https://2793709227-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-M0vHiS-1S9Hw3djvoTw%2F-MS9PXH5Gvt_5dbxMX-R%2F-MS9SUEShFFudN3Xq4b-%2Fimage.png?alt=media\&token=d624754d-44ed-4a71-a95c-882629e4e23f)
