Django dumpdata command lets us export model objects as fixtures and to store them in json / xml formats.
All is good and works fine until you need to export a model that is a child of a concrete model and shares two database tables (one for parent another is for the ...