# 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

![](/files/-MS9RtIjZctOeAeYwMgL)

#### After

![](/files/-MS9SUEShFFudN3Xq4b-)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.forestadmin.com/woodshop/how-tos/make-filters-case-insensitive.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
