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

    Properties

    operator:
        | "eq"
        | "ne"
        | "lt"
        | "lte"
        | "gt"
        | "gte"
        | "in"
        | "notIn"
        | "contains"
        | "startsWith"
        | "endsWith"
        | "isNull"
    path: string[]
    type: "comparison"