diff --git a/core/graphene/object_types.py b/core/graphene/object_types.py index 8bd074e7..eb0e87c1 100644 --- a/core/graphene/object_types.py +++ b/core/graphene/object_types.py @@ -393,6 +393,10 @@ class ProductType(DjangoObjectType): "slug", "description", "feedbacks", + "feedbacks_count", + "personal_orders_only", + "quantity", + "attribute_groups", "images", "price", ) diff --git a/core/serializers/simple.py b/core/serializers/simple.py index 6c7a2f30..658f5fe4 100644 --- a/core/serializers/simple.py +++ b/core/serializers/simple.py @@ -169,6 +169,7 @@ class ProductSimpleSerializer(ModelSerializer): "partnumber", "brand", "feedbacks_count", + "personal_orders_only", "category", "tags", "images",