Meldbase TypeScript API
    Preparing search index...

    Type Alias WireQueryExpr

    WireQueryExpr:
        | { op: "true" }
        | { args: readonly WireQueryExpr[]; op: "and" | "or" }
        | { arg: WireQueryExpr; op: "not" }
        | {
            cmp: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
            op: "compare";
            path: string;
            value: WireValue;
        }
        | { op: "in"
        | "nin"; path: string; values: readonly WireValue[] }
        | { op: "exists"; path: string; value: boolean }