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 # Short info about the user. 25 String : 26 27 # User's employee number 28 String : 29 30 # User's personal e-mail address 31 String : 32 33 # User's personal address of residence 34 PersonalAddress : 35 36 # Status of user's invitation. 37 InvitationStatus : 38 39 # The position a user is assigned to. 40 Position : 41 42 # The team a user is assigned to. 43 Team : 44 45 # The teams a user is assigned to. 46 Team] : [ 47 48 # The location a user is assigned to. 49 Location : 50 51 # Is user active or inactive. 52 Boolean : 53 54 # User's work schedule 55 WorkSchedule : 56 57 }
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.
- UsersPagePaginated list of users.
- VacationTimeOffBalanceVacation time off balance.
- WorkScheduleAssignmentRecalculationOvertimeBalanceTransactionWork schedule assignment recalculation overtime balance transaction.