Skip to content
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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

busykoala
Copy link

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.

@codecov
Copy link

codecov bot commented Sep 11, 2022

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (ea79c47) 98.49% compared to head (962c9c8) 97.84%.
Report is 121 commits behind head on main.

❗ Current head 962c9c8 differs from pull request most recent head cbc9a0d. Consider uploading reports for the commit cbc9a0d to get more accurate results

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     
Files Coverage Δ
sqlmodel/main.py 85.42% <100.00%> (ø)
tests/test_relation_resolution.py 100.00% <100.00%> (ø)

... and 1 file with indirect coverage changes

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@github-actions
Copy link

📝 Docs preview for commit 96d8163 at: https://631dd936753845213d1e2387--sqlmodel.netlify.app

@github-actions
Copy link

📝 Docs preview for commit 84f63cf at: https://631dda323fbe07200d52088f--sqlmodel.netlify.app

@github-actions
Copy link

📝 Docs preview for commit 8a5ffcc at: https://631ddb6ebb7dd71b7b02620a--sqlmodel.netlify.app

@github-actions
Copy link

📝 Docs preview for commit f6dc339 at: https://631ddc07663389246842205f--sqlmodel.netlify.app

@github-actions
Copy link

📝 Docs preview for commit 962c9c8 at: https://631ddeff5fa59526a8ff8fe5--sqlmodel.netlify.app

@kennedy
Copy link

kennedy commented Sep 26, 2022

bump

@github-actions
Copy link

📝 Docs preview for commit 51aa03f at: https://639ce02ba12b8e02ba9de2b6--sqlmodel.netlify.app

@github-actions
Copy link

📝 Docs preview for commit b408fa9 at: https://f3eafa08.sqlmodel.pages.dev

@tiangolo tiangolo added the feature New feature or request label Oct 22, 2023
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.
Copy link

📝 Docs preview for commit cbc9a0d at: https://2ea088ba.sqlmodel.pages.dev

@emp-l
Copy link

emp-l commented Jan 19, 2024

That'd be very helpful and will reduce duplicated code. Any plans to merge this PR any time soon? 🙏

@Galtozzy
Copy link

Galtozzy commented Mar 17, 2025

Bump, is very simple yet will be insanely useful

@busykoala
Copy link
Author

I haven’t looked into the latest changes on main, and I’m not confident about the current state of the code, since I haven’t worked on it in a while. I’m not sure what kind of impact this change would have on the codebase now, as things might have shifted quite a bit. Happy to revisit or close this if it’s more helpful for the project.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature New feature or request investigate
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Selectin for the SQLModels relations
5 participants