From 85576cf4ad76d4929037f979489ad0f9c452752b Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Mon, 2 Mar 2026 00:53:22 +0300 Subject: [PATCH] feat(schema): add retrieveExactProducts query to support detailed product retrieval Added the `RetrieveExactProducts` query to the schema to enable fetching specific product details. This addition enhances the granularity of product data retrieval in the GraphQL API. --- engine/core/graphene/schema.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/engine/core/graphene/schema.py b/engine/core/graphene/schema.py index e48d7606..8c6ebc56 100644 --- a/engine/core/graphene/schema.py +++ b/engine/core/graphene/schema.py @@ -41,6 +41,7 @@ from engine.core.graphene.mutations import ( RemoveOrderProductsOfAKind, RemoveWishlistProduct, RequestCursedURL, + RetrieveExactProducts, Search, ) from engine.core.graphene.object_types import ( @@ -384,6 +385,7 @@ class Mutation(ObjectType): bulk_order_action = BulkOrderAction.Field() bulk_wishlist_action = BulkWishlistAction.Field() feedback_product_action = FeedbackProductAction.Field() + retrieve_exact_products = RetrieveExactProducts.Field() deposit = Deposit.Field() obtain_jwt_token = ObtainJSONWebToken.Field() refresh_jwt_token = RefreshJSONWebToken.Field()