orderUpdateAddress
DEPRECATED
Use orderAddressUpdate
Update an order address (deprecated - use orderAddressUpdate instead).
Updates address information for the specified order and address ID.
Possible errors:
- ORDER_ADDRESS_NOT_FOUND_ERROR: Order address with specified ID does not exist for the given order
- ORDER_NOT_FOUND: Order with the specified ID does not exist
- ORDER_ADDRESS_UPDATE_ERROR: Failed to update the order address due to system error
- ORDER_ADDRESS_HOME_NOT_ALLOWED_ERROR: Creating or updating home type addresses is not allowed
- VALIDATION_ERROR: Input validation failed (invalid address data, missing required fields)
- FORBIDDEN: Insufficient permissions to update order addresses
AUTH: Role=[order.OWNER,order.EDITOR]
orderUpdateAddress(
id: Int!
addressId: Int!
input: OrderUpdateAddressInput!
): Boolean! @deprecated
Arguments
orderUpdateAddress.id
● Int!
non-null scalar
ID of the order this address belongs to
orderUpdateAddress.addressId
● Int!
non-null scalar
Unique identifier of the address to update
orderUpdateAddress.input
● OrderUpdateAddressInput!
non-null input
Updated address information
Type
Boolean
scalar
The Boolean
scalar type represents true
or false
.