OBJECT
User
Represents a user.
link GraphQL Schema definition
1 type User { 2 3 # Id. 4 ID : 5 6 # First name. 7 String : 8 9 # Last name. 10 String : 11 12 # Email address. 13 String : 14 15 # Gender 16 Gender : 17 18 # A list of work phone numbers. 19 String] : [ 20 21 # User's work started date. 22 Date : 23 24 # User's work ended date. 25 Date : 26 27 # Short info about the user. 28 String : 29 30 # User's employee number. 31 String : 32 33 # User's birth date. 34 Date : 35 36 # User's personal e-mail address. 37 String : 38 39 # User's personal address of residence. 40 PersonalAddress : 41 42 # Status of user's invitation. 43 InvitationStatus : 44 45 # User's language. 46 Language : 47 48 # The position a user is assigned to. 49 Position : 50 51 # The team a user is assigned to. 52 Team : 53 54 # The teams a user is assigned to. 55 Team] : [ 56 57 # The location a user is assigned to. 58 Location : 59 60 # Is user active or inactive. 61 Boolean : 62 63 # User's work schedule 64 WorkSchedule : 65 66 # User's manager 67 User : 68 69 # Nationality. 70 String : 71 72 # Personal phone number. 73 String : 74 75 # List of social accounts. 76 SocialAccount] : [ 77 78 # User pronouns. 79 String : 80 81 # List of custom field values. 82 # 83 # Arguments 84 # filter: User custom field values filter. 85 UserCustomFieldFilterInput): [UserCustomFieldValue] ( : 86 87 }
link Required by
- AttendanceStatementRepresents an attendance statement.
- CompensatoryTimeOffBalanceCompensatory time off balance.
- CustomOvertimeBalanceTransactionCustom overtime balance transaction.
- CustomTimeOffBalanceCustom time off balance.
- GenericTimeOffBalanceGeneric time off balance.
- Mutationnull
- OvertimeBalanceStatementRepresents an overtime balance statement.
- Querynull
- RecalculationOvertimeBalanceTransactionRecalculation overtime balance transaction.
- RemoteTimeOffBalanceRemote time off balance.
- SickLeaveTimeOffBalanceSick leave time off balance.
- TimeOffBalancenull
- TimeOffRequestRecalculationOvertimeBalanceTransactionTime off request recalculation overtime balance transaction.
- TimeOffRequestUsageStatementRepresents time off request usage statement.
- UserRepresents a user.
- UsersPagePaginated list of users.
- VacationTimeOffBalanceVacation time off balance.
- WorkScheduleAssignmentRecalculationOvertimeBalanceTransactionWork schedule assignment recalculation overtime balance transaction.