> For the complete documentation index, see [llms.txt](https://docs.kognitos.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.kognitos.com/legacy/legacy-experience/books/custom-books/api-reference/enums/filterbinaryoperator-enum.md).

# FilterBinaryOperator

## Enum Definition

```python
from enum import Enum

class FilterBinaryOperator(Enum):
    """Represents the different binary operators used in filtering procedures."""
    AND = 0
    OR = 1
    EQUALS = 2
    NOT_EQUALS = 3
    IN = 4
    HAS = 5
    LESS_THAN = 6
    GREATER_THAN = 7
    LESS_THAN_OR_EQUAL = 8
    GREATER_THAN_OR_EQUAL = 9
```

## Enum Members

<table><thead><tr><th width="239.0078125">Member</th><th width="120.53125">Value</th><th>Description</th></tr></thead><tbody><tr><td><code>AND</code></td><td><code>0</code></td><td>Logical AND operator, used to combine conditions.</td></tr><tr><td><code>OR</code></td><td><code>1</code></td><td>Logical OR operator, used to combine alternative conditions.</td></tr><tr><td><code>EQUALS</code></td><td><code>2</code></td><td>Tests if two values are equal.</td></tr><tr><td><code>NOT_EQUALS</code></td><td><code>3</code></td><td>Tests if two values are not equal.</td></tr><tr><td><code>IN</code></td><td><code>4</code></td><td>Tests if a value is within a specified list or range.</td></tr><tr><td><code>HAS</code></td><td><code>5</code></td><td>Tests if a collection contains a specific element.</td></tr><tr><td><code>LESS_THAN</code></td><td><code>6</code></td><td>Tests if one value is less than another.</td></tr><tr><td><code>GREATER_THAN</code></td><td><code>7</code></td><td>Tests if one value is greater than another.</td></tr><tr><td><code>LESS_THAN_OR_EQUAL</code></td><td><code>8</code></td><td>Tests if one value is less than or equal to another.</td></tr><tr><td><code>GREATER_THAN_OR_EQUAL</code></td><td><code>9</code></td><td>Tests if one value is greater than or equal to another.</td></tr></tbody></table>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.kognitos.com/legacy/legacy-experience/books/custom-books/api-reference/enums/filterbinaryoperator-enum.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
