apollo-router 2.13.1

A configurable, high-performance routing runtime for Apollo Federation 🚀
Documentation
//! Plugins implementing router customizations.
//!
//! These plugins are compiled into the router and configured via YAML configuration.

macro_rules! schemar_fn {
    ($name:ident, $ty:ty, $description:expr) => {
        schemar_fn!($name, $ty, (), $description);
    };

    ($name:ident, $ty:ty, $default:expr, $description:expr) => {
        fn $name(generator: &mut schemars::SchemaGenerator) -> schemars::Schema {
            let mut schema = <$ty>::json_schema(generator);
            schema.insert("description".to_string(), $description.into());
            schema.insert("default".to_string(), $default.into());
            schema
        }
    };
}

pub(crate) mod authentication;
pub(crate) mod authorization;
pub(crate) mod cache;
pub(crate) mod chaos;
pub(crate) mod connectors;
mod coprocessor;
pub(crate) mod cors;
pub(crate) mod csrf;
pub(crate) mod demand_control;
pub(crate) mod diagnostics;
pub(crate) mod enhanced_client_awareness;
pub(crate) mod expose_query_plan;
pub(crate) mod file_uploads;
mod fleet_detector;
mod forbid_mutations;
mod headers;
pub(crate) mod healthcheck;
mod include_subgraph_errors;
pub(crate) mod license_enforcement;
pub(crate) mod limits;
pub(crate) mod mock_subgraphs;
pub(crate) mod override_url;
pub(crate) mod progressive_override;
mod record_replay;
pub(crate) mod response_cache;
pub(crate) mod rhai;
pub(crate) mod subscription;
pub(crate) mod telemetry;
#[cfg(test)]
pub(crate) mod test;
pub(crate) mod traffic_shaping;