diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-08-21 11:59:50 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-08-21 12:04:28 +0200 |
commit | 185ba5270aaf94de9b91e4455be27db5198ec21e (patch) | |
tree | fc8d71e7ac6fd6b5b5aa8cc3fbf3c511d2b51342 /src/main.rs | |
parent | c2b09dbb88591d9695c1cd2227c5d559b4a8e775 (diff) |
Reformat graphql mod
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
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 |