CreateContactResponse
Response for creating a new Contact
type CreateContactResponse {
success: Boolean!
contact: Contact
errors: [String!]
}
Fields
CreateContactResponse.success ● Boolean! non-null scalar
Whether the operation was successful
CreateContactResponse.contact ● Contact object
The created Contact
CreateContactResponse.errors ● [String!] list scalar
List of errors that may have occurred during the operation
Returned By
createContact mutation