summaryrefslogtreecommitdiff
path: root/src/graphql/routes.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphql/routes.rs')
-rw-r--r--src/graphql/routes.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/graphql/routes.rs b/src/graphql/routes.rs
new file mode 100644
index 0000000..2380760
--- /dev/null
+++ b/src/graphql/routes.rs
@@ -0,0 +1,11 @@
+use crate::graphql::query::*;
+use async_graphql::{EmptyMutation, EmptySubscription, Schema};
+use async_graphql_axum::{GraphQLRequest, GraphQLResponse};
+use std::sync::Arc;
+
+pub async fn graphql_handler(
+ schema: Arc<Schema<Query, EmptyMutation, EmptySubscription>>,
+ req: GraphQLRequest,
+) -> GraphQLResponse {
+ schema.execute(req.into_inner()).await.into()
+}