File size: 490 Bytes
5285b72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import logging
from ariadne import load_schema_from_path, make_executable_schema
from ariadne.asgi import GraphQL
from ariadne.asgi.handlers import GraphQLTransportWSHandler
from .resolver import query, subscription


type_defs = load_schema_from_path("schema/graphql_qa.graphql")
schema = make_executable_schema(type_defs, query, subscription)
graphql_app = GraphQL(
    schema,
    debug=True,
    logger=logging.getLogger("graphql"),
    websocket_handler=GraphQLTransportWSHandler(),
)