mirror of
https://github.com/rjNemo/federation
synced 2026-06-06 10:16:39 +00:00
6 lines
201 B
Python
6 lines
201 B
Python
from ariadne import load_schema_from_path
|
|
from user.schema.query import query
|
|
from user.schema.mutation import mutation
|
|
from user.schema.types.user import user
|
|
|
|
type_defs = load_schema_from_path("./")
|