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:
parent
ce172721c1
commit
38903e0323
1 changed files with 1 additions and 2 deletions
|
|
@ -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",
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue