OBJECT
User
A type that describes the user.
link GraphQL Schema definition
1 type User { 2 3 # The user's username, should be typed in the login field 4 : String! 5 6 # The user's full name 7 : String! 8 9 # The user's e-mail 10 : String! 11 12 # The attribute that says if the user is or not an admin 13 : Boolean! 14 15 # The attribute that says if the user wants to view de csv or not 16 : Boolean! 17 18 # The attribute that contains the profile picture 19 : Image 20 21 # The attribute that contains the prefered air station 22 : UserAirStation 23 24 # The attribute that contains the prefered water station 25 : WaterStation 26 27 # The attribute that contains the pollen measure 28 : [PollenThreshold] 29 30 # The attribute that says the status of the user 31 : UserStatus 32 33 }