From eb48c78b9d829f7f22542d34c81480127d4cf432 Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Thu, 29 May 2025 15:54:01 +0300 Subject: [PATCH] Fixes: 1) Rename `id` field to `uuid` in `BulkActionOrderProductInput` for clarity and consistency; Extra: align field naming with project standards. --- core/graphene/object_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/graphene/object_types.py b/core/graphene/object_types.py index 141c0322..dcd0b1ee 100644 --- a/core/graphene/object_types.py +++ b/core/graphene/object_types.py @@ -511,5 +511,5 @@ class SearchResultsType(ObjectType): class BulkActionOrderProductInput(InputObjectType): - id = UUID(required=True) + uuid = UUID(required=True) attributes = GenericScalar(required=False)