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 # A list of work phone numbers. 16 String] : [ 17 18 # User's work started date. 19 Date : 20 21 # Short info about the user. 22 String : 23 24 # Status of user's invitation. 25 InvitationStatus : 26 27 # The position a user is assigned to. 28 Position : 29 30 # The team a user is assigned to. 31 Team : 32 33 # The location a user is assigned to. 34 Location : 35 36 # Is user active or inactive. 37 Boolean : 38 39 }