//! GraphQL executor module
//!
//! This module contains the custom GraphQL executor that executes queries
//! against the dynamically generated schema.
//!
//! The executor is split into several sub-modules for better maintainability:
//! - `core`: Main executor orchestration
//! - `query_executor`: Query resolution logic
//! - `mutation_executor`: Mutation resolution logic
//! - `link_mutations`: Link-specific mutations
//! - `field_resolver`: Field and relation resolution
//! - `utils`: Utility functions
pub use GraphQLExecutor;