OBJECT

UserProfile

User profile data that can be protected by privacy settings.

link GraphQL Schema definition

1type UserProfile {
2
3avatarUrl: String
4
5name: String
6
7email: String
8
9roles: [String] @deprecated( reason: "This field is no longer available." )
10
11location: String @deprecated( reason: "This field is no longer available." )
12
13experience: String @deprecated( reason: "This field is no longer available." )
14
15phone: String @deprecated( reason: "This field is no longer available." )
16
17linkedinUrl: String @deprecated( reason: "This field is no longer available." )
18
19githubUrl: String @deprecated( reason: "This field is no longer available." )
20
21skills: [UserSkill] @deprecated( reason: "This field is no longer available." )
22
23}

link Required by