fraiseql-server 2.2.0

HTTP server for FraiseQL v2 GraphQL engine
Documentation
//! GraphQL HTTP endpoint.
//!
//! Supports both POST and GET requests per the GraphQL over HTTP spec:
//! - POST: JSON body with `query`, `variables`, `operationName`
//! - GET: Query parameters `query`, `variables` (JSON-encoded), `operationName`

pub mod app_state;
pub mod handler;
pub mod request;
pub mod tenant_key;
pub mod tenant_registry;

#[cfg(test)]
mod tests;

pub use app_state::AppState;
pub use handler::{graphql_get_handler, graphql_handler};
pub use request::{GraphQLGetParams, GraphQLRequest, GraphQLResponse};
pub use tenant_key::{DomainRegistry, TenantKeyResolver};
pub use tenant_registry::TenantExecutorRegistry;