reactive_graph_graphql_schema/lib.rs
1use async_graphql::Schema;
2
3pub use mutation::ReactiveGraphMutation;
4pub use query::ReactiveGraphQuery;
5pub use subscription::ReactiveGraphSubscription;
6
7pub mod directives;
8pub mod error;
9pub mod mutation;
10pub mod query;
11pub mod subscription;
12
13/// GraphQL Schema for the Reactive Graph
14pub type ReactiveGraphSchema = Schema<ReactiveGraphQuery, ReactiveGraphMutation, ReactiveGraphSubscription>;
15
16#[cfg(test)]
17mod tests;