apollo-router 2.14.0-rc.2

A configurable, high-performance routing runtime for Apollo Federation 🚀
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub(crate) mod cache_control;
pub(crate) mod cache_key;
pub(crate) mod debugger;
pub(crate) mod invalidation;
pub(crate) mod invalidation_endpoint;
pub(crate) mod metrics;
pub(crate) mod plugin;
pub(crate) mod serde_blake3;
mod storage;
#[cfg(all(
    test,
    any(not(feature = "ci"), all(target_arch = "x86_64", target_os = "linux"))
))]
pub(crate) mod tests;

pub(super) trait ErrorCode {
    fn code(&self) -> &'static str;
}