//! Core data types shared across all modules.
//!
//! | Item | Description |
//! |---|---|
//! | [`Value`] | Scalar property value (Null, Bool, Int, Float, String, List) |
//! | [`Properties`] | `HashMap<String, Value>` property bag |
//! | [`Node`] | Graph node: ID + labels + properties |
//! | [`Edge`] | Graph edge: ID + label + endpoints + properties + directed flag |
//! | [`NodeId`] / [`EdgeId`] | ULID-based opaque identifiers |
//! | [`DbError`] | Unified error type for all database operations |
//! | [`value_index_key`] | Order-preserving index key encoder for the prop_idx CF |
pub use DbError;
pub use ;
pub use Node;
pub use Edge;
pub use ;