# SearchableIntFilterInput

Operator guidance:

* `eq` / `ne` — exact-value match. Use for amounts in minor units, sequence numbers, etc.
* `gt` / `gte` / `lt` / `lte` — open-ended bounds.
* `range: [from, to]` — inclusive `[from, to]` range. \*\*Required pattern for timestamp fields\*\* (`createdAt`, `updatedAt`, `scheduledAt`, etc., all unix-seconds). The dashboard and SDKs always use `range` for date filtering.

```
input SearchableIntFilterInput {

  ne: Int

  gt: Int

  lt: Int

  gte: Int

  lte: Int

  eq: Int

  range: [Int]

}
```

### Fields[​](#fields "Direct link to Fields")

#### [`SearchableIntFilterInput.ne`](#ne) ● [`Int`](https://docs.monei.com/apis/graphql/types/scalars/int/.md) scalar[​](#ne "Direct link to ne")

Not equal to.

#### [`SearchableIntFilterInput.gt`](#gt) ● [`Int`](https://docs.monei.com/apis/graphql/types/scalars/int/.md) scalar[​](#gt "Direct link to gt")

Greater than.

#### [`SearchableIntFilterInput.lt`](#lt) ● [`Int`](https://docs.monei.com/apis/graphql/types/scalars/int/.md) scalar[​](#lt "Direct link to lt")

Less than.

#### [`SearchableIntFilterInput.gte`](#gte) ● [`Int`](https://docs.monei.com/apis/graphql/types/scalars/int/.md) scalar[​](#gte "Direct link to gte")

Greater than or equal to.

#### [`SearchableIntFilterInput.lte`](#lte) ● [`Int`](https://docs.monei.com/apis/graphql/types/scalars/int/.md) scalar[​](#lte "Direct link to lte")

Less than or equal to.

#### [`SearchableIntFilterInput.eq`](#eq) ● [`Int`](https://docs.monei.com/apis/graphql/types/scalars/int/.md) scalar[​](#eq "Direct link to eq")

Equal to.

#### [`SearchableIntFilterInput.range`](#range) ● [`[Int]`](https://docs.monei.com/apis/graphql/types/scalars/int/.md) list scalar[​](#range "Direct link to range")

Inclusive `[from, to]` range. Provide exactly two values. Required pattern for timestamp filters.

### Member Of[​](#member-of "Direct link to Member Of")

[`SearchableAccountInvoiceFilterInput`](https://docs.monei.com/apis/graphql/types/inputs/searchable-account-invoice-filter-input/.md) input ● [`SearchableAccountSettlementFilterInput`](https://docs.monei.com/apis/graphql/types/inputs/searchable-account-settlement-filter-input/.md) input ● [`SearchableChargeFilterInput`](https://docs.monei.com/apis/graphql/types/inputs/searchable-charge-filter-input/.md) input ● [`SearchableEventFilterInput`](https://docs.monei.com/apis/graphql/types/inputs/searchable-event-filter-input/.md) input ● [`SearchableSubscriptionFilterInput`](https://docs.monei.com/apis/graphql/types/inputs/searchable-subscription-filter-input/.md) input
