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:
...