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
29}