AutoBE
    Preparing search index...

    Scalar comparison on a column path.

    interface Comparison {
        operator:
            | "eq"
            | "ne"
            | "lt"
            | "lte"
            | "gt"
            | "gte"
            | "in"
            | "notIn"
            | "contains"
            | "startsWith"
            | "endsWith"
            | "isNull";
        path: AutoBeRealizePathSegment[];
        type: "comparison";
        value?: AutoBeRealizeQueryScalar
        | AutoBeRealizeQueryScalarList;
    }
    Index

    Properties

    operator:
        | "eq"
        | "ne"
        | "lt"
        | "lte"
        | "gt"
        | "gte"
        | "in"
        | "notIn"
        | "contains"
        | "startsWith"
        | "endsWith"
        | "isNull"

    Comparison operator.

    Equality/ordering (eq..gte), set membership (in, notIn), string matching (contains, startsWith, endsWith), or isNull.

    Column path the comparison applies to.

    type: "comparison"

    Operand to compare against.

    A scalar for most operators, a list for in / notIn, and omitted for isNull.