noauto-case-fix
All checks were successful
deploy / deploy (push) Successful in 1m19s

This commit is contained in:
Untone 2023-11-26 23:49:05 +03:00
parent 2174a99a24
commit 474d2091c6

View File

@ -8,6 +8,7 @@ from services.auth import login_required
from services.db import local_session
from strawberry_sqlalchemy_mapper import StrawberrySQLAlchemyMapper
import strawberry
from strawberry.schema.config import StrawberryConfig
strawberry_sqlalchemy_mapper = StrawberrySQLAlchemyMapper()
@ -133,4 +134,4 @@ class Mutation:
return NotificationSeenResult()
schema = strawberry.Schema(query=Query, mutation=Mutation)
schema = strawberry.Schema(query=Query, mutation=Mutation, config=StrawberryConfig(auto_camel_case=False))