reactive_graph_plugin_graphql_schema/
lib.rs

1use async_graphql::EmptySubscription;
2use async_graphql::Schema;
3
4use crate::mutation::PluginMutation;
5use crate::query::PluginQuery;
6
7pub type PluginSchema = Schema<PluginQuery, PluginMutation, EmptySubscription>;
8
9pub mod mutation;
10pub mod query;