contactUpdate
Updates a contact.
For example:
mutation ContactUpdate(
$contactId: ID!,
$contactType: ContactType!
) {
contactUpdate(input: {
contactId: $contactId,
contactType: $contactType
}) {
contact {
id
}
errors {
message
path
}
}
}
contactUpdate(
input: ContactUpdateInput!
): ContactUpdatePayload
Arguments
contactUpdate.input ● ContactUpdateInput! non-null input common
Parameters for ContactUpdate
Type
ContactUpdatePayload object common
Autogenerated return type of ContactUpdate