OBJECT

InputContactResult

The type representing response objects for the contact import mutation.

link GraphQL Schema definition

  • type InputContactResult {
  • # The list of errors, in case the `status` was `error`.
  • errors: [ErrorMessage!]
  • # The ID of the imported contact.
  • id: UUID!
  • # The status of the import operation. The operation can be successful or can fail.
  • status: RequestStatus!
  • }