mykytiakv

Results 1 comments of mykytiakv

``` class ProductDocument(DocType): # set here fields Price Model you wanna use price = NestedField(properties={ 'value': fields.FloatField(), 'id': fields.IndegerField() }) class Meta: model = Product related_model = [PriceModel] fields =...