@camunda8/sdk
    Preparing search index...

    Interface AdvancedStringFilter

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

    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.