type-bridge-orm 1.5.2

Async ORM for TypeDB built on type-bridge-core-lib
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Chainable query builders for entities and relations.
//!
//! Provides [`EntityQuery`] and [`RelationQuery`] with fluent APIs for
//! filtering, sorting, pagination, and aggregation.
//! [`GroupByEntityQuery`] and [`GroupByRelationQuery`] add grouped
//! aggregation support.

pub mod entity_query;
pub mod group_by_query;
pub mod relation_query;

pub use entity_query::EntityQuery;
pub use group_by_query::{GroupByEntityQuery, GroupByRelationQuery};
pub use relation_query::RelationQuery;