INPUT_OBJECT

ContactInputObject

A contact input object

link GraphQL Schema definition

  • input ContactInputObject {
  • # one of "mr", "mme", "other"
  • civility: String
  • # Email
  • email: String
  • # Numéro de fax
  • fax: String
  • # Prénom
  • firstname: String
  • id: ID
  • # Nom
  • lastname: String
  • # Numéro de téléphone
  • phone: String
  • # Fonction
  • position: String
  • # List of tags to describe the contact. A valid tag is one of the following:
  • # "admin", "learning", "finance", "manager", "company_portal"
  • tags: [String]
  • # Titre
  • title: String
  • }