Skip to content
New issue

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

EmbeddedDocumentField: cannot convert value of type <class '...'> to bson #132

Open
dandrei opened this issue Aug 10, 2018 · 0 comments
Open

Comments

@dandrei
Copy link

dandrei commented Aug 10, 2018

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()

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant