pypi strawberry-graphql 0.305.0
🍓 0.305.0

5 hours ago

Remove deprecated is_unset() function and deprecated UNSET import from strawberry.arguments, deprecated since 0.109.0.

Migration guide

Before (deprecated):

from strawberry.types.unset import is_unset
from strawberry.types.arguments import UNSET

if is_unset(value):
    ...

After:

from strawberry import UNSET

if value is UNSET:
    ...

Releases contributed by @Ckk3 via #4212

Don't miss a new strawberry-graphql release

NewReleases is sending notifications on new releases.