federation/review/schema/__init__.py
2020-11-14 16:43:58 +01:00

8 lines
206 B
Python

from ariadne import load_schema_from_path
from .query import query
from .types.review import review
from .types.product import product
from .types.user import user
type_defs = load_schema_from_path("./")