//! gqls — GraphQL schema search.
//!
//! Layered like `rq`: a source loader turns a schema (SDL file, or — planned
//! — an introspection URL) into flat [`model::SchemaRecord`]s, and a search
//! layer ranks them. Two capabilities are *borrowed* rather than rebuilt:
//!
//! - fuzzy ranking — adapted from `rq`'s `search/score.rs`
//! (`~/code/lib/rust/rq`); see [`search::score`].
//! - semantic search — lifted from `ae`'s local embedding pipeline
//! (`~/code/lib/rust/ae`: `embed.rs` + `mrl.rs`); see [`semantic`].
//! Behind the `semantic` cargo feature (pulls in ONNX Runtime).