-
-
Notifications
You must be signed in to change notification settings - Fork 537
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Testing #3743
base: main
Are you sure you want to change the base?
The head ref may contain hidden characters: "feature/\u{1F426}\u200D\u{1F525}_"
Testing #3743
Conversation
Reviewer's Guide by SourceryThis pull request introduces a temporary workaround to resolve an issue where the resolver is not correctly set on a field. A TODO comment has been added to indicate that a more robust solution needs to be implemented in the future. Sequence diagram for field resolver assignmentsequenceDiagram
participant SchemaConverter
participant Field
SchemaConverter->>SchemaConverter: from_field()
SchemaConverter->>SchemaConverter: from_resolver(field)
Note right of SchemaConverter: Get resolver
SchemaConverter->>Field: _resolver = resolver
Note right of Field: Temporary workaround
SchemaConverter->>SchemaConverter: from_maybe_optional()
Class diagram showing Field resolver modificationclassDiagram
class SchemaConverter {
+from_field(field)
+from_resolver(field)
+from_maybe_optional()
}
class Field {
-_resolver
}
SchemaConverter ..> Field : modifies
note for Field "Temporary _resolver assignment added as workaround"
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
/pre-release |
Pre-release👋 Releasing commit [7354b47] to PyPi as pre-release! 📦 |
Pre-release👋 Pre-release 0.257.0.dev.1735244504 [7354b47] has been released on PyPi! 🚀 poetry add strawberry-graphql==0.257.0.dev.1735244504 |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3743 +/- ##
=======================================
Coverage 97.27% 97.27%
=======================================
Files 501 501
Lines 33408 33409 +1
Branches 5480 5480
=======================================
+ Hits 32499 32500 +1
Misses 701 701
Partials 208 208 |
CodSpeed Performance ReportMerging #3743 will not alter performanceComparing Summary
|
Summary by Sourcery
Enhancements:
_resolver
attribute of the field object.