Member Junction
    Preparing search index...

    Describes the structure of a single metadata filter condition. Each vector DB provider translates these into its native filter syntax.

    interface MetadataFilterCondition {
        Field: string;
        Operator: "eq" | "in" | "contains";
        Value: string | number | string[];
    }
    Index

    Properties

    Properties

    Field: string

    The metadata field name to filter on

    Operator: "eq" | "in" | "contains"

    The comparison operator

    Value: string | number | string[]

    The value(s) to compare against