Skip to main content

allsource_core/infrastructure/query/
mod.rs

1// Advanced query features (v2.0)
2//
3// - eventql: SQL-like query language using DataFusion over Arrow RecordBatches
4// - graphql: Lightweight GraphQL API for events and projections
5// - geospatial: Haversine distance and bounding box queries on event coordinates
6
7#[cfg(feature = "analytics")]
8pub mod eventql;
9pub mod geospatial;
10pub mod graphql;