INPUT_OBJECT
CreateUserInput
Input data for user creation.
link GraphQL Schema definition
1 input CreateUserInput { 4 2 # First name. 3 : String! 7 5 # Last name. 6 : String! 10 8 # Email address. 9 : String! 13 11 # A list of work phone numbers. 12 : [String] 16 14 # User's work started date. 15 : Date 19 17 # Short info about the user. 18 : String 22 20 # Gender. 21 : Gender 25 23 # ID of the user's manager. 24 : ID 28 26 # Nationality. 27 : String 31 29 # List of IDs of teams user belongs to. 30 : [ID] 34 32 # Position ID. 33 : ID 37 35 # Location ID. 36 : ID 40 38 # Date of birth. 39 : Date 43 41 # Personal phone number. 42 : String 46 44 # Personal email address 45 : String 49 47 # Address. 48 : PersonalAddressInput 52 50 # List of social accounts. 51 : [SocialAccountInput] 55 53 # User pronouns. 54 : String 58 56 # List of user's custom field values. 57 : [UserCustomFieldValueInput] 59 }