core/services/schema.py
Untone 0301d8041d
All checks were successful
Deploy to core / deploy (push) Successful in 1m54s
schema-move-test
2024-02-19 11:20:13 +03:00

9 lines
265 B
Python

from ariadne import MutationType, QueryType
from ariadne import load_schema_from_path, make_executable_schema
query = QueryType()
mutation = MutationType()
resolvers = [query, mutation]
schema = make_executable_schema(load_schema_from_path('schema/'), resolvers)