From 185ba5270aaf94de9b91e4455be27db5198ec21e Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Wed, 21 Aug 2024 11:59:50 +0200 Subject: Reformat graphql mod --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index 7ef7ee6..e87a7c4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -30,13 +30,13 @@ async fn create_app() -> Router { client: Arc::new(dbclient), }; - let schema = Schema::build(graphql::Query, EmptyMutation, EmptySubscription) + let schema = Schema::build(graphql::query::Query, EmptyMutation, EmptySubscription) .data(state.clone()) .finish(); Router::new() .route( "/graphql", - post(move |req| graphql::graphql_handler(schema.clone().into(), req)), + post(move |req| graphql::routes::graphql_handler(schema.clone().into(), req)), ) .fallback(crate::routes::page_404) // Mark the `Authorization` request header as sensitive so it doesn't -- cgit v1.2.3-18-g5258