Flask-Restless & Marshmallow: 'dict' object has no attribute '_sa_instance_state' Flask-Restless & Marshmallow: 'dict' object has no attribute '_sa_instance_state' flask flask

Flask-Restless & Marshmallow: 'dict' object has no attribute '_sa_instance_state'


Turns out I had to add a __tablename__ to the model definition and extend the Schema:

class CaseSchema(Schema):    [...]    @post_load    def make_case(self, data):        return Case(**data)