apollo-federation-types 0.17.2

apollo-federation-types contains types used by plugins for the Rover CLI
Documentation
1
2
3
4
5
6
7
8
9
10
mod config_error;
mod subgraph;
mod supergraph;
mod version;

pub use config_error::ConfigError;
pub use version::{FederationVersion, PluginVersion, RouterVersion};
pub type ConfigResult<T> = std::result::Result<T, ConfigError>;
pub use subgraph::{SchemaSource, SubgraphConfig};
pub use supergraph::SupergraphConfig;