diff options
Diffstat (limited to 'src/graphql/routes.rs')
-rw-r--r-- | src/graphql/routes.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/graphql/routes.rs b/src/graphql/routes.rs index a566c65..4a3acfc 100644 --- a/src/graphql/routes.rs +++ b/src/graphql/routes.rs @@ -6,6 +6,8 @@ use axum::extract::Extension; use super::types::jwt::Authentication; +/// Handler for GraphQL route. +/// It executs the schema using the authorization as appdata pub async fn graphql_handler( schema: Extension<Schema<Query, Mutation, EmptySubscription>>, auth: Authentication, |