updatePropertyAddress
Update the address of an existing property.
Arguments
Input fields for updating the address of a property.
Possible Errors
Allowed Viewers
Required Permissions
Can update property detailsQuery Complexity
5Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
mutation UpdatePropertyAddress($input: UpdatePropertyAddressInput!) {
updatePropertyAddress(input: $input) {
property {
...PropertyTypeFragment
}
}
}
Variables
{
"input": UpdatePropertyAddressInput
}
Response
{
"data": {
"updatePropertyAddress": {
"property": PropertyType
}
}
}