diff --git a/services/backend/api/v1/competition/schemas.py b/services/backend/api/v1/competition/schemas.py index 1c5aff1..079baab 100644 --- a/services/backend/api/v1/competition/schemas.py +++ b/services/backend/api/v1/competition/schemas.py @@ -11,7 +11,7 @@ class CompetitionOut(ModelSchema): class Meta: model = Competition - fields = "__all__" + exclude = ("participants",) class StateOut(ModelSchema):