@coveo/headless-react
    Preparing search index...

    Interface StringFieldExpression

    interface StringFieldExpression {
        field: string;
        negate?: boolean;
        operator: StringOperator;
        values: string[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    field: string

    The field name.

    negate?: boolean

    If true, the inverse expression will be created.

    operator: StringOperator

    The operator to use when comparing field and values.

    values: string[]

    The values to match against the field.