We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Can't create any schemas at all.
class Price(db.Model): id = db.Column(db.Integer, primary_key=True) name = db.Column(db.String(128), index=True) class PriceSchema(ma.SQLAlchemyAutoSchema): class Meta: model = Price
This raises the following error:
TypeError: Schema.__init__() got an unexpected keyword argument 'include_data'
Have also tried with ma.SQLAlchemySchema.
ma.SQLAlchemySchema
Installed: flask version : 2.0.1 flask_marshmallow version : 0.14.0
The text was updated successfully, but these errors were encountered:
It appears you're using marshmallow-jsonapi, from which the include_data option was removed. see https://github.com/marshmallow-code/marshmallow-jsonapi/blob/dev/CHANGELOG.rst#080-2016-06-20
include_data
Sorry, something went wrong.
No branches or pull requests
Can't create any schemas at all.
This raises the following error:
Have also tried with
ma.SQLAlchemySchema
.Installed:
flask version : 2.0.1
flask_marshmallow version : 0.14.0
The text was updated successfully, but these errors were encountered: