graphgate-planner 0.5.1

GraphGate is Apollo Federation implemented in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![forbid(unsafe_code)]

mod builder;
mod plan;
mod request;
mod response;
mod types;

pub use builder::PlanBuilder;
pub use plan::{
    FetchNode, FlattenNode, IntrospectionDirective, IntrospectionField, IntrospectionNode,
    IntrospectionSelectionSet, ParallelNode, PathSegment, PlanNode, ResponsePath, RootNode,
    SequenceNode, SubscribeNode,
};
pub use request::Request;
pub use response::{ErrorPath, Response, ServerError};