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
Hi Guys, Currently I set up a simple model, schema, type as below. However, I don't know why when I use EmbeddedField it works in the runtime (It doesn't show any runtime error) but I can't operate any query on this field.
Error messge
"Cannot query field "metadata" on type "Scenario"
Environment:
Python3.6
Python3.8
Computer system
Mac: MacOC
Models.py
# EmbeddedDocument Models
class Scenario(EmbeddedDocument):
name = models.StringField(max_length=100)
creationDatetime = models.DateTimeField()
lastUpdateDatetime = models.DateTimeField()
data = models.DictField()
cancellation = models.BooleanField(default=False)
isDefault = models.BooleanField(default=False)
# Document Models
class View(Document):
name = models.StringField(max_length=100)
scenarios = models.EmbeddedDocumentListField(Scenario)
cancellation = models.BooleanField(default=False)
Types.py
class ViewType(MongoengineObjectType):
class Meta:
model = View
interfaces = (relay.Node,)
Hi Guys, Currently I set up a simple model, schema, type as below. However, I don't know why when I use EmbeddedField it works in the runtime (It doesn't show any runtime error) but I can't operate any query on this field.
Error messge
"Cannot query field "metadata" on type "Scenario"
Environment:
Python3.6
Python3.8
Computer system
Mac: MacOC
Models.py
Types.py
Schema.py
Also, I have tried the solution on this issue as well
#32
I will get an error when I declare the reference model
The text was updated successfully, but these errors were encountered: