codegraph 0.2.0

A fast, reliable, and flexible graph database optimized for storing and querying code relationships
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Core graph types and operations.
//!
//! This module defines the fundamental building blocks:
//! - [`Node`]: Graph nodes representing code entities
//! - [`Edge`]: Directed relationships between nodes
//! - [`CodeGraph`]: The main graph database interface

pub mod algorithms;
mod codegraph;
mod property;
mod types;

pub use codegraph::CodeGraph;
pub use property::{PropertyMap, PropertyValue};
pub use types::{Direction, Edge, EdgeId, EdgeType, Node, NodeId, NodeType};