OBJECT

User

Represents a user.

link GraphQL Schema definition

1type User {
2
3# Id.
4id: ID
5
6# First name.
7firstName: String
8
9# Last name.
10lastName: String
11
12# Email address.
13email: String
14
15# Gender
16gender: Gender
17
18# A list of work phone numbers.
19workPhones: [String]
20
21# User's work started date.
22employmentStartDate: Date
23
24# User's work ended date.
25employmentEndDate: Date
26
27# Short info about the user.
28aboutMe: String
29
30# User's employee number.
31employeeNumber: String
32
33# User's birth date.
34birthDate: Date
35
36# User's personal e-mail address.
37personalEmail: String
38
39# User's personal address of residence.
40address: PersonalAddress
41
42# Status of user's invitation.
43invitationStatus: InvitationStatus
44
45# User's language.
46language: Language
47
48# The position a user is assigned to.
49position: Position
50
51# The team a user is assigned to.
52team: Team
53
54# The teams a user is assigned to.
55teams: [Team]
56
57# The location a user is assigned to.
58location: Location
59
60# Is user active or inactive.
61isActive: Boolean
62
63# User's work schedule
64workSchedule: WorkSchedule
65
66# User's manager
67manager: User
68
69# Nationality.
70nationality: String
71
72# Personal phone number.
73personalPhone: String
74
75# List of social accounts.
76socialAccounts: [SocialAccount]
77
78# List of custom field values.
79#
80# Arguments
81# filter: User custom field values filter.
82customFieldValues(filter: UserCustomFieldFilterInput): [UserCustomFieldValue]
83
84}