graphgate-schema 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
#![forbid(unsafe_code)]

mod composed_schema;
mod error;
mod type_ext;
mod value_ext;

pub use composed_schema::{
    ComposedSchema, Deprecation, KeyFields, MetaEnumValue, MetaField, MetaInputValue, MetaType,
    TypeKind,
};
pub use error::CombineError;
pub use type_ext::TypeExt;
pub use value_ext::ValueExt;