Hi, there is still an issue for Embedded fields. Is there any way that this is going to be fixed ?
My requirements.txt
Django==4.0.1
djangorestframework==3.12.2
djongo==1.3.6
pymongo==3.12.1
pytz==2021.3
class CommercialProjectDocument(models.Model):
tax = models.ArrayField(model_container=Tax, null=True, help_text='taxes')
class Meta:
abstract = True
class Project(models.Model):
_id = models.ObjectIdField(help_text='Unique identifier')
document = models.EmbeddedField(model_container=CommercialProjectDocument, null=True, default=None)
When I'm trying to query and serialize project I'm getting issue about abstract = True property.
Does this library is no longer maintained, since this is well known issue for long time ?
Hi, there is still an issue for Embedded fields. Is there any way that this is going to be fixed ?
My requirements.txt
Django==4.0.1
djangorestframework==3.12.2
djongo==1.3.6
pymongo==3.12.1
pytz==2021.3
When I'm trying to query and serialize project I'm getting issue about
abstract = Trueproperty.Does this library is no longer maintained, since this is well known issue for long time ?