OBJECT
Contact
A contact
link GraphQL Schema definition
- type Contact {
- # Date de naissance (CFA)
- : Date
- # one of "mr", "mme", "other"
- : String
- # Email
- : String
- # Numéro de fax
- : String
- # Prénom
- : String
- # Niveau de diplôme (CFA) — one of {0, 3, 4, 5, 6, 7, 8} or null. 0=Aucun diplôme,
- # 3=CAP/BEP, 4=Baccalauréat, 5=DEUG/BTS/DUT/DEUST, 6=Licence/BUT/Maîtrise,
- # 7=Master/DEA/DESS/ingénieur, 8=Doctorat/HDR.
- : Int
- : ID
- # Creation date and time - format: YYYY-MM-DDThh:mm:sss
- : NaiveDateTime
- # Dernier diplôme obtenu (CFA)
- : String
- # Nom
- : String
- # Numéro de téléphone
- : String
- # Fonction
- : String
- # Deuxième nom de famille
- : String
- : [String]
- # Titre
- : String
- # Last update date and time - format: YYYY-MM-DDThh:mm:sss
- : NaiveDateTime
- }