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
7pub mod eventql;
8pub mod geospatial;
9pub mod graphql;