Skip to main content

cortex_runtime/wql/
mod.rs

1//! WQL — Web Query Language for the compiled web.
2//!
3//! A SQL-like language for querying compiled schemas across domains,
4//! with temporal functions for history, trends, and predictions.
5
6pub mod executor;
7pub mod parser;
8pub mod planner;