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
I have the following setup:
class InnerClass(Document): field: StringField() class OuterClass(Document): field: EmbeddedDocumentField(embedded_document_type=InnerClass)
When calling: await OuterClass(field=InnerClass(field="test")).save()
await OuterClass(field=InnerClass(field="test")).save()
I get: cannot convert value of type <class 'scout.persist.domains.InnerClass'> to bson
cannot convert value of type <class 'scout.persist.domains.InnerClass'> to bson
What could be the problem? I followed the documentation as listed here: http://motorengine.readthedocs.io/en/latest/modeling.html
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have the following setup:
When calling:
await OuterClass(field=InnerClass(field="test")).save()
I get:
cannot convert value of type <class 'scout.persist.domains.InnerClass'> to bson
What could be the problem?
I followed the documentation as listed here: http://motorengine.readthedocs.io/en/latest/modeling.html
The text was updated successfully, but these errors were encountered: