pub async fn graphql_handler<A, Q, M, S>(
schema: Extension<Schema<Q, M, S>>,
headers: HeaderMap,
req: GraphQLRequest,
) -> GraphQLResponsewhere
A: Send + Sync + 'static,
Q: ObjectType + Send + Sync + 'static,
M: ObjectType + ContainerType + Send + Sync + 'static,
S: SubscriptionType + Send + Sync + 'static,