Strawberry GraphQL @ 0.263.0

Released

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