@resistdesign/voltra
    Preparing search index...

    Type Alias StructuredTermWhere

    Term clause for structured queries.

    type StructuredTermWhere = {
        field: string;
        mode: "eq" | "contains";
        type: "term";
        value: WhereValue;
    }
    Index

    Properties

    Properties

    field: string

    Field name to query.

    mode: "eq" | "contains"

    Term match mode.

    type: "term"

    Clause type discriminator.

    value: WhereValue

    Value to match.