Right now the only thing that can be changed in schema configs is auto_camel_case
:
https://strawberry.rocks/docs/types/schema-configurations
It would be useful to similarly be able to set relay_max_results
as follows, which is not possible right now:
import strawberry
from strawberry.schema.config import StrawberryConfig
@strawberry.type
class Query:
example_field: str
schema = strawberry.Schema(query=Query, config=StrawberryConfig(relay_max_results=1000))
In the meantime, I need a workaround; my app needs a higher relay_max_results
than the default 100. How can I accomplish this?
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too