Skip to main content

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

SearchableIntFilterInput.ne ● Int scalar

Not equal to.

SearchableIntFilterInput.gt ● Int scalar

Greater than.

SearchableIntFilterInput.lt ● Int scalar

Less than.

SearchableIntFilterInput.gte ● Int scalar

Greater than or equal to.

SearchableIntFilterInput.lte ● Int scalar

Less than or equal to.

SearchableIntFilterInput.eq ● Int scalar

Equal to.

SearchableIntFilterInput.range ● [Int] list scalar

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

Member Of

SearchableAccountInvoiceFilterInput input ● SearchableAccountSettlementFilterInput input ● SearchableChargeFilterInput input ● SearchableEventFilterInput input ● SearchableSubscriptionFilterInput input