Skip to content

🍓 0.235.0

Compare
Choose a tag to compare
@botberry botberry released this 10 Jun 16:46
· 40 commits to main since this release

This release adds a new configuration to disable field suggestions in the error
response.

@strawberry.type
class Query:
    name: str


schema = strawberry.Schema(
    query=Query, config=StrawberryConfig(disable_field_suggestions=True)
)

Trying to query { nam } will not suggest to query name instead.

Releases contributed by @patrick91 via #3537