-
-
Notifications
You must be signed in to change notification settings - Fork 95
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
dump_object does not follow object relations #78
Comments
@DataGreed are those relations required properties for the model? |
@dopry sorry, no idea, it was two years ago, I don't even remember this case. But judging from the code, they are |
@DataGreed thanks. are you still using fixture magic at all? |
not a t the moment, I've used it several times to generate test fixture, and I think I'll use it in the future for the same purppose :) |
we have the same use case. :) |
Environment: Django 3.0.6
In my case the app does not follow relations when exporting data with dump_object
Simplified models:
When I execute
python manage.py dump_object members.member --query '{"pk__in": [1]}
for a Member with several Subscriptions I only get the Member model dumped:The text was updated successfully, but these errors were encountered: