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",
|
||||
"country",
|
||||
"raw_data",
|
||||
"address_line_1",
|
||||
"address_line_2",
|
||||
"address_line",
|
||||
"api_response",
|
||||
"user",
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue