> ## 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.

# ComparisonOperatorInput

> Numeric threshold expressed as stringified numbers with comparison operators (input form).

### TypeScript shape

```ts theme={null}
interface ComparisonOperatorInput {
  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>
