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

    Interface NumericFieldExpression

    interface NumericFieldExpression {
        field: string;
        negate?: boolean;
        operator: NumericOperator;
        value: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    field: string

    The field name.

    negate?: boolean

    If true, the inverse expression will be created.

    operator: NumericOperator

    The operator to use when comparing field and value.

    value: number

    The value to match against the field.