interface AdvancedStringFilter {
    $eq?: string;
    $exists?: boolean;
    $in: string[];
    $like: string;
    $neq?: string;
}

Properties

$eq?: string

Checks for equality with the provided value.

$exists?: boolean

Checks if the current property exists.

$in: string[]

Checks if the property matches any of the provided values.

$like: string

Checks if the property matches the provided like value. Supported wildcard characters depend on the configured search client.

$neq?: string

Checks for inequality with the provided value.

Generated using TypeDoc