Skip to main content
Version: 8.9 (unreleased)

Type Alias: BasicStringFilter

type BasicStringFilter = object;

Defined in: gen/types.gen.ts:2627

Advanced filter

Basic advanced string filter.

Properties

$eq?

optional $eq: string;

Defined in: gen/types.gen.ts:2631

Checks for equality with the provided value.


$exists?

optional $exists: boolean;

Defined in: gen/types.gen.ts:2639

Checks if the current property exists.


$in?

optional $in: string[];

Defined in: gen/types.gen.ts:2643

Checks if the property matches any of the provided values.


$neq?

optional $neq: string;

Defined in: gen/types.gen.ts:2635

Checks for inequality with the provided value.


$notIn?

optional $notIn: string[];

Defined in: gen/types.gen.ts:2647

Checks if the property matches none of the provided values.