UserAddressDeleteInput
Input data for deleting a user address.
Contains both address ID and user ID to ensure proper ownership validation before deletion.
input UserAddressDeleteInput {
id: Int!
userId: Int!
}
Fields
UserAddressDeleteInput.id
● Int!
non-null scalar
Unique identifier of the address to be deleted.
Must be a positive integer representing a valid address ID that belongs to the specified user.
UserAddressDeleteInput.userId
● Int!
non-null scalar
Unique identifier of the user who owns this address.
Must be a positive integer representing a valid user ID in the system. Used for ownership validation.
Member Of
userAddressDelete
mutation