1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//! Core GraphQL functionality
//!
//! This module provides the core GraphQL functionality including AST definitions,
//! type system, execution engine, and schema management.
// Re-export core GraphQL functionality
// Note: Clippy warning about ambiguous glob re-exports is acceptable here
// as this is intentional for providing a unified API surface
#[allow(ambiguous_glob_reexports)]
pub use crate::ast::*;
pub use crate::execution::*;
pub use crate::parser::*;
pub use crate::schema::*;
#[allow(ambiguous_glob_reexports)]
pub use crate::types::*;
/// Core GraphQL components
pub mod components {
/// Individual core components
/// Abstract Syntax Tree definitions
pub mod ast {
pub use crate::ast::*;
}
/// GraphQL type system
pub mod types {
pub use crate::types::*;
}
/// Query execution engine
pub mod execution {
pub use crate::execution::*;
}
/// Schema definition and management
pub mod schema {
pub use crate::schema::*;
}
/// GraphQL query parser
pub mod parser {
pub use crate::parser::*;
}
}