-
-
Notifications
You must be signed in to change notification settings - Fork 710
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
Add config option to load relationship fields. #445
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #445 +/- ##
==========================================
- Coverage 98.49% 97.84% -0.66%
==========================================
Files 185 188 +3
Lines 5856 6450 +594
==========================================
+ Hits 5768 6311 +543
- Misses 88 139 +51
☔ View full report in Codecov by Sentry. |
📝 Docs preview for commit 96d8163 at: https://631dd936753845213d1e2387--sqlmodel.netlify.app |
📝 Docs preview for commit 84f63cf at: https://631dda323fbe07200d52088f--sqlmodel.netlify.app |
📝 Docs preview for commit 8a5ffcc at: https://631ddb6ebb7dd71b7b02620a--sqlmodel.netlify.app |
📝 Docs preview for commit f6dc339 at: https://631ddc07663389246842205f--sqlmodel.netlify.app |
📝 Docs preview for commit 962c9c8 at: https://631ddeff5fa59526a8ff8fe5--sqlmodel.netlify.app |
bump |
📝 Docs preview for commit 51aa03f at: https://639ce02ba12b8e02ba9de2b6--sqlmodel.netlify.app |
📝 Docs preview for commit b408fa9 at: https://f3eafa08.sqlmodel.pages.dev |
Due to the recursive loading problem loading relations is not yet possible. This change introduces the config option 'include_relations' to also load specifically chosen relations. For the current use case nothing changes unless the user specifically sets fields to be included (and carefully considers the risks of circular includes). The option is very valuable if the table design contains many 1:n relations.
📝 Docs preview for commit cbc9a0d at: https://2ea088ba.sqlmodel.pages.dev |
That'd be very helpful and will reduce duplicated code. Any plans to merge this PR any time soon? 🙏 |
Bump, is very simple yet will be insanely useful |
I haven’t looked into the latest changes on |
Close #444
Due to the recursive loading problem loading relations is not yet possible. This change introduces the config option 'include_relations' to also load specifically chosen relations.
For the current use case nothing changes unless the user specifically sets fields to be included (and carefully considers the risks of circular includes). The option is very valuable if the table design contains many 1:n relations.
Additionally, if the new config option was used with fastapi the tests show that the relation additionally has to be set to
sa_relationship_kwargs={"lazy": "selectin"})
, while the relations will not be returned otherwise.