[Answered ]-How to retain an added column in django queryset during serialization?

2👍

It’s more that the django serialiser looks at the columns, not at the attributes.

You can look at other serialisation tools: wad of stuff serializer springs to mind.

I wound up writing my own, that uses a django Form to serialise and deserialise.

Leave a comment