You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class MyModel(EmbeddedDocument):
myField = BooleanField(null=True)
and was getting an error about "Cannot return null for non-nullable". It seemed that it didn't matter if I set null=True, null=False. Digging into this, I found:
I had a model:
and was getting an error about "Cannot return null for non-nullable". It seemed that it didn't matter if I set null=True, null=False. Digging into this, I found:
graphene-mongo/graphene_mongo/converter.py
Lines 39 to 41 in fbdd3e2
Why is this?
The text was updated successfully, but these errors were encountered: