@@ -9,10 +9,11 @@ class UserType < Types::BaseObject
99 field :avatar_path , String , null : true , description : 'The avatar if present of the user'
1010
1111 field :admin , Boolean , null : false , description : 'Global admin status of the user'
12- field :email , String , null : false , description : 'Email of the user' , authorize : :read_email
13- field :email_verified_at , Types ::TimeType , null : true ,
14- description : 'Email verification date of the user if present' ,
15- authorize : :read_email
12+ field :email , String , null : true , description : 'Email of the user' , authorize : :read_email
13+ field :email_verified_at , Types ::TimeType ,
14+ null : true ,
15+ description : 'Email verification date of the user if present' ,
16+ authorize : :read_email
1617 field :firstname , String , null : true , description : 'Firstname of the user'
1718 field :lastname , String , null : true , description : 'Lastname of the user'
1819 field :username , String , null : false , description : 'Username of the user'
0 commit comments