> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mobula.io/llms.txt
> Use this file to discover all available pages before exploring further.

# ComparisonOperator

> Numeric threshold expressed as a stringified number with comparison operators.

### TypeScript shape

```ts theme={null}
interface ComparisonOperator {
  gt: string | null;
  gte: string | null;
  lt: string | null;
  lte: string | null;
  eq: string | null;
}
```

All values are stringified numbers. At least one operator should be set.

<ResponseField name="gt" type="String">Strictly greater than.</ResponseField>
<ResponseField name="gte" type="String">Greater than or equal to.</ResponseField>
<ResponseField name="lt" type="String">Strictly less than.</ResponseField>
<ResponseField name="lte" type="String">Less than or equal to.</ResponseField>
<ResponseField name="eq" type="String">Equal to.</ResponseField>
