Skip to content

🍓 0.261.0

Compare
Choose a tag to compare
@botberry botberry released this 27 Feb 12:39
· 7 commits to main since this release

This release adds support for type[strawberry.UNSET] in addition to strawberry.types.unset.UnsetType for annotations.

@strawberry.type
class User:
    name: str | None = UNSET
    age: int | None | type[strawberry.UNSET] = UNSET

Releases contributed by @alexey-pelykh via #3765