g3-toolkit API Reference
    Preparing search index...

    Interface PropertyFilter

    interface PropertyFilter {
        key: string;
        operator:
            | "eq"
            | "neq"
            | "gt"
            | "gte"
            | "lt"
            | "lte"
            | "contains"
            | "exists";
        value?: unknown;
    }
    Index

    Properties

    Properties

    key: string
    operator: "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "contains" | "exists"
    value?: unknown