> For the complete documentation index, see [llms.txt](https://developer.collibra.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.collibra.com/api/guides/knowledge-graph/filtering/filter-operators.md).

# Filter operators

## String

| Name          | Description                     |
| ------------- | ------------------------------- |
| startsWith    | Starts with                     |
| notStartsWith | Not starts with                 |
| endsWith      | Ends with                       |
| notEndsWith   | Not ends with                   |
| contains      | Contains                        |
| notContains   | Does not contain                |
| eq            | Equals                          |
| gt            | Greater than                    |
| gte           | Greater than or equals          |
| in            | Equals to one of the values     |
| notIn         | Not equals to any of the values |
| lt            | Less than                       |
| lte           | Less than or equals             |
| ne            | Not equals                      |
| null          | The field value is null         |

## Float, Date, DateTime, UUID

| Name | Description             |
| ---- | ----------------------- |
| eq   | Equals                  |
| gt   | Greater than            |
| gte  | Greater than or equals  |
| lt   | Less than               |
| lte  | Less than or equals     |
| ne   | Not equals              |
| null | The field value is null |
