pypi strawberry-graphql 0.263.0
🍓 0.263.0

latest release: 0.263.0.dev1743582446
3 days ago

Adds the ability to include pydantic computed fields when using pydantic.type decorator.

Example:

class UserModel(pydantic.BaseModel):
    age: int

    @computed_field
    @property
    def next_age(self) -> int:
        return self.age + 1


@strawberry.experimental.pydantic.type(
    UserModel, all_fields=True, include_computed=True
)
class User:
    pass

Will allow nextAge to be requested from a user entity.

Releases contributed by @tylernisonoff via #3798

Don't miss a new strawberry-graphql release

NewReleases is sending notifications on new releases.