icydb 0.77.2

IcyDB — A type-safe, embedded ORM and schema system for the Internet Computer
Documentation
//! Public facade query surface.
//!
//! Re-exports the typed query builders, semantic query types, and facade-only
//! helper modules used by downstream canister code.

pub mod expr;

pub use expr::{FilterExpr, OrderDirection, SortExpr};
pub use icydb_core::db::{
    AggregateExpr, CompareOp, CompiledQuery, ExplainPlan, FieldRef, MissingRowPolicy, PlannedQuery,
    Predicate, Query, QueryTracePlan, TraceExecutionFamily, avg, count, count_by, exists, first,
    last, max, max_by, min, min_by, sum,
};

/// Field-reference and aggregate helpers exposed by the facade query API.
pub mod builder {
    pub use icydb_core::db::{
        AggregateExpr, FieldRef, avg, count, count_by, exists, first, last, max, max_by, min,
        min_by, sum,
    };
}

/// Predicate type exposed at the facade query boundary.
pub mod predicate {
    pub use icydb_core::db::Predicate;
}