FilterOps interface

The comparison operators a caller may send for one field.

Signature:

export interface FilterOps 

Properties

Property

Modifiers

Type

Description

contains?

string

(Optional) Contains, as a substring.

endsWith?

string

(Optional) Ends with.

eq?

unknown

(Optional) Equal to.

gt?

unknown

(Optional) Greater than.

gte?

unknown

(Optional) Greater than or equal to.

in?

unknown[]

(Optional) One of.

lt?

unknown

(Optional) Less than.

lte?

unknown

(Optional) Less than or equal to.

mode?

'default' | 'insensitive'

(Optional) insensitive to ignore case in the three matchers above.

not?

unknown

(Optional) Not equal to.

notIn?

unknown[]

(Optional) None of.

startsWith?

string

(Optional) Begins with.

Read this page as plain markdown — no HTML, no navigation. For pasting into an LLM, or for an agent to fetch.