pypi strawberry-graphql 0.289.3
🍓 0.289.3

9 hours ago

This release fixes an issue where lazy union types using the new Annotated syntax were not being resolved correctly.

Example that now works:

from typing import Annotated

import strawberry


@strawberry.type
class Query:
    @strawberry.field
    def example(self) -> Annotated["SomeUnion", strawberry.lazy("module")]: ...

Releases contributed by @patrick91 via #4156

Don't miss a new strawberry-graphql release

NewReleases is sending notifications on new releases.