1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright (c) 2024-2025 DeepGraph Inc.
// SPDX-License-Identifier: Apache-2.0
//
//! Graph storage implementation for in-memory graph data
//!
//! This module provides:
//! - Value type system for graph properties
//! - In-memory graph storage with adjacency lists
//! - Efficient indexing for nodes and edges by label
//! - Graph operations (add, get, find)
//! - Sample fraud data generation
//! - Pluggable storage backend trait for different KV stores
pub use GraphCache;
pub use ;
pub use ;
// Only expose StorageType for configuration
pub use StorageType;
// Public exports for examples and tests
pub use ;
// Public interface - only StorageManager should be used externally
pub use ;
// Index system (stub)
// TTL management
// pub use ttl_manager::{TTLManager, TTLCleanupStats}; // TODO: Not yet extracted
// Re-export common types for convenience