OBJECT

Contact

A contact

link GraphQL Schema definition

  • type Contact {
  • # one of "mr", "mme", "other"
  • civility: String
  • # Email
  • email: String
  • # Numéro de fax
  • fax: String
  • # Prénom
  • firstname: String
  • id: ID
  • # Creation date and time - format: YYYY-MM-DDThh:mm:sss
  • insertedAt: NaiveDateTime
  • # Nom
  • lastname: String
  • # Numéro de téléphone
  • phone: String
  • # Fonction
  • position: String
  • tags: [String]
  • # Titre
  • title: String
  • # Last update date and time - format: YYYY-MM-DDThh:mm:sss
  • updatedAt: NaiveDateTime
  • }