prorm API Reference
    Preparing search index...

    Type Alias GraphPredicate

    GraphPredicate:
        | { kind: "and"; items: GraphPredicate[] }
        | { kind: "or"; items: GraphPredicate[] }
        | { kind: "not"; item: GraphPredicate }
        | { kind: "cmp"; field: string; op: CanonOp; value: unknown }
        | { kind: "true" }

    Normalized WHERE predicate tree. Each dialect walks this and renders it in its own language rather than re-parsing the raw WhereOptions.