updateAccountReference
Update a reference for a particular account and namespace.
Arguments
Input fields for updating an account reference.
Possible Errors
Allowed Viewers
Required Permissions
Can access customer queriesCan update account reference
Query Complexity
1Examples
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 UpdateAccountReference($input: AccountReferenceInput!) {
updateAccountReference(input: $input) {
accountReference {
...AccountReferenceTypeFragment
}
}
}
Variables
{
"input": AccountReferenceInput
}
Response
{
"data": {
"updateAccountReference": {
"accountReference": AccountReferenceType
}
}
}