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.rs2
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,