Skip to main content

qualia_core_db/query/
mod.rs

1//! `query` category (reorg).
2
3pub mod cbor_compiler;
4pub mod graph_index;
5#[cfg(not(target_arch = "wasm32"))]
6pub mod graph_proof;
7#[cfg(test)]
8mod graph_proof_tests;
9pub mod indexing;
10#[cfg(not(target_arch = "wasm32"))]
11pub mod ingest;
12#[cfg(any(
13    not(target_arch = "wasm32"),
14    feature = "wasm-logic",
15    feature = "wasm-scientific",
16    feature = "wasm-full"
17))]
18pub mod ingestion;
19pub mod lexicon;
20pub mod mini_parser;
21#[cfg(not(target_arch = "wasm32"))]
22pub mod ontology_loader;
23#[cfg(any(
24    not(target_arch = "wasm32"),
25    feature = "wasm-logic",
26    feature = "wasm-scientific",
27    feature = "wasm-full"
28))]
29pub mod query_compiler;
30pub mod query_engine;
31pub mod rdf_star;
32pub mod resolve;
33pub mod resolver;
34#[cfg(any(
35    not(target_arch = "wasm32"),
36    feature = "wasm-ontology",
37    feature = "wasm-logic",
38    feature = "wasm-scientific",
39    feature = "wasm-full"
40))]
41pub mod shacl_compiler;
42pub mod spawn_decay;
43pub mod temporal_graph;
44pub mod temporal_scrub;
45pub mod visual_model_bridge;