From 56df2ab37b2cce3ee4949b30a468d79961fc1eab Mon Sep 17 00:00:00 2001 From: Ruslan Bakiev Date: Sun, 25 Jan 2026 20:49:22 +0700 Subject: [PATCH] Fix OfferNodeType initialization error Remove supplier_name field from OfferNodeType constructor in resolve_nearest_offers - this field does not exist in the type definition and causes 400 errors. Co-Authored-By: Claude Sonnet 4.5 --- geo_app/schema.py | 1 - 1 file changed, 1 deletion(-) diff --git a/geo_app/schema.py b/geo_app/schema.py index 03a3b43..5d98f55 100644 --- a/geo_app/schema.py +++ b/geo_app/schema.py @@ -1486,7 +1486,6 @@ class Query(graphene.ObjectType): product_uuid=node.get('product_uuid'), product_name=node.get('product_name'), supplier_uuid=node.get('supplier_uuid'), - supplier_name=node.get('supplier_name'), latitude=node.get('latitude'), longitude=node.get('longitude'), country=node.get('country'),