summaryrefslogtreecommitdiff
path: root/src/graphql/routes.rs
blob: 4a3acfceed97af1cdf4d494c23852648345ee19f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::graphql::mutation::Mutation;
use crate::graphql::query::Query;
use async_graphql::{EmptySubscription, Schema};
use async_graphql_axum::{GraphQLRequest, GraphQLResponse};
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,
    req: GraphQLRequest,
) -> GraphQLResponse {
    schema.execute(req.0.data(auth)).await.into()
}