refactor(graphene): consolidate address fields into single field address_line

Replaced `address_line_1` and `address_line_2` with `address_line` to simplify the structure and reduce redundancy in the object type definition.
This commit is contained in:
Egor Pavlovich Gorbunov 2026-03-05 14:14:22 +03:00
parent ce172721c1
commit 38903e0323

View file

@ -392,8 +392,7 @@ class AddressType(DjangoObjectType):
"postal_code", "postal_code",
"country", "country",
"raw_data", "raw_data",
"address_line_1", "address_line",
"address_line_2",
"api_response", "api_response",
"user", "user",
) )