interstellar 0.2.0

A high-performance graph database with Gremlin-style traversals and GQL query language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Query pattern integration tests.
//!
//! This module contains tests for common graph query patterns:
//! - Neighborhood exploration
//! - Path tracking and analysis
//! - Aggregation and grouping
//! - Conditional and branching logic
//! - Recursive traversal patterns

pub mod aggregations;
pub mod conditionals;
pub mod neighborhood;
pub mod paths;
pub mod recursive;
pub mod similar_customers;