mirror of
https://github.com/rjNemo/federation
synced 2026-06-07 10:46:40 +00:00
8 lines
206 B
Python
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("./")
|