fraiseql-server 2.2.0

HTTP server for FraiseQL v2 GraphQL engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Federation support modules for Apollo Federation v2.
//!
//! This module provides observability, health checking, and circuit breaking
//! for federated GraphQL queries.

pub mod circuit_breaker;
pub mod health_checker;

pub use circuit_breaker::FederationCircuitBreakerManager;
pub use health_checker::{
    RollingErrorWindow, SubgraphConfig, SubgraphHealthChecker, SubgraphHealthStatus,
};