strawberry-graphql
strawberry
Blog
Docs
Changelog
Blog
Docs
Changelog
Overview
Branches
Benchmarks
Runs
Performance History
Latest Results
Add RELEASE.md
patrick91/verify-4177-union-alias
8 hours ago
feat(codegen): use Maybe for nullable input fields schema-codegen now generates nullable input fields with strawberry.Maybe[T | None] instead of just T | None. This allows generated input types to be instantiated without providing nullable fields, fixing the issue where empty inputs like `{}` would cause TypeError. Before: ```python @strawberry.input class HealthResultInput: some_number: int | None # Required - causes TypeError ``` After: ```python @strawberry.input class HealthResultInput: some_number: strawberry.Maybe[int | None] # Optional ``` Benefits of using Maybe over UNSET: - Better type safety (proper generic type) - Explicit nullability semantics - Clearer distinction between absent and null values
patrick91/verify-4177-union-alias
12 hours ago
[pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci
XChikuX:claude/fix-model-warnings-VOJm0
1 day ago
Release 🍓 0.289.8
main
1 day ago
Export UploadDefinition for proper type checking with file uploads (#4175) Add `UploadDefinition` to `strawberry.file_uploads` which can be used with `scalar_overrides` to map framework-specific upload types (like `UploadFile`) to the `Upload` scalar. This enables proper type checking with mypy/pyright. Fixes #4143
main
1 day ago
fix: export UploadDefinition for proper type checking with file uploads Add `UploadDefinition` to `strawberry.file_uploads` which can be used with `scalar_overrides` to map framework-specific upload types (like `UploadFile`) to the `Upload` scalar. This enables proper type checking with mypy/pyright. Fixes #4143
patrick91/upload-type-issue
1 day ago
Fix typo and missing assignment in Annotated field handling - Fix typo: `field_annotationsd` → `field_annotations` - Add missing assignment of `strawberry_field_from_annotated` from the extracted field annotations list, which was preventing Annotated StrawberryFields from being properly used
add-support-for-defining-fields-using-annotated
1 day ago
docs: clarify authorization guide (#4174)
main
1 day ago
Active Branches
feat(codegen): use Maybe for nullable input fields
last run
8 hours ago
#4178
CodSpeed Performance Gauge
0%
Add support for defining fields using Annotated
last run
1 day ago
#4059
CodSpeed Performance Gauge
0%
unit tests for Union type look-up during queries
last run
4 days ago
#4088
CodSpeed Performance Gauge
0%
© 2026 CodSpeed Technology
Home
Terms
Privacy
Docs