summaryrefslogtreecommitdiff
path: root/src/graphql/routes.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-08-23 22:19:32 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-08-23 22:19:32 +0200
commit7b9e9d2da5d85f23d43724fe2ca5012918ea54be (patch)
tree801ccae65d27fcf69bfca5db18265fbb7b5d7f21 /src/graphql/routes.rs
parentcb1aa9668a967fe875e716469ccf936ed8693ad3 (diff)
Add doc
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,