mirror of
https://github.com/rjNemo/federation
synced 2026-06-06 10:16:39 +00:00
11 lines
327 B
Python
11 lines
327 B
Python
import uvicorn
|
|
from ariadne.asgi import GraphQL
|
|
from ariadne.contrib.federation import make_federated_schema
|
|
|
|
from user.schema import type_defs, query, mutation, user
|
|
|
|
schema = make_federated_schema(type_defs, query, mutation, user)
|
|
app = GraphQL(schema, debug=True)
|
|
|
|
if __name__ == "__main__":
|
|
uvicorn.run(app, port=5001)
|