contactCreate
Creates a contact.
For example:
mutation ContactCreate(
$contactType: ContactType!,
$customFields: [CustomFieldInput!]
) {
contactCreate(
input: {
contactType: $contactType,
customFields: $customFields
}
) {
contact {
id
}
errors {
message
path
}
}
}
contactCreate(
input: ContactCreateInput!
): ContactCreatePayload
Arguments
contactCreate.input ● ContactCreateInput! non-null input common
Parameters for ContactCreate
Type
ContactCreatePayload object common
Autogenerated return type of ContactCreate