INPUT_OBJECT

UpdateUserInput

Input data for user update.

link GraphQL Schema definition

1input UpdateUserInput {
4
2# First name.
3firstName: String
7
5# Last name.
6lastName: String
10
8# A list of work phone numbers.
9workPhones: [String]
13
11# User's work started date.
12employmentStartDate: Date
16
14# Short info about user.
15aboutMe: String
19
17# Position's id.
18positionId: ID
22
20# Team's id.
21teamId: ID
25
23# Team ids.
24teamIds: [ID]
28
26# Location's id.
27locationId: ID
31
29# Manager's id.
30managerId: ID
34
32# Gender.
33gender: Gender
37
35# Nationality.
36nationality: String
40
38# Date of birth.
39birthDate: Date
43
41# Personal phone number.
42personalPhone: String
46
44# Personal email address
45personalEmail: String
49
47# Address.
48address: PersonalAddressInput
52
50# List of social accounts.
51socialAccounts: [SocialAccountInput]
55
53# List of user's custom field values.
54customFieldValues: [UserCustomFieldValueInput]
56}