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
9# List of job roles user is proficient at.
10roles: [String]
11
12# User's location.
13location: String
14
15# Years of experience given as a range.
16experience: String
17
18phone: String
19
20linkedinUrl: String
21
22githubUrl: String
23
24skills: [UserSkill]
25
26}

link Required by