You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.
If I have a series of nested models (from SQLAlchemy, for example), it would be nice to be able to RootSchema(include_data=True).dump(root_model). Currently, you have to spell out each and every relationship you want to include, but it's not inconceivable you might want to dump out the whole relationship tree.
My proposed API for this would be setting include_data to True, rather than passing in an iterable.
The text was updated successfully, but these errors were encountered:
If I have a series of nested models (from SQLAlchemy, for example), it would be nice to be able to
RootSchema(include_data=True).dump(root_model)
. Currently, you have to spell out each and every relationship you want to include, but it's not inconceivable you might want to dump out the whole relationship tree.My proposed API for this would be setting
include_data
toTrue
, rather than passing in an iterable.The text was updated successfully, but these errors were encountered: