OBJECT

User

link GraphQL Schema definition

1type User {
2
3id: ID!
4
5country: Country
6
7username: String!
8
9profile: UserProfile!
10
11companyFields: CompanyUserFields
12
13clientData: UserCompanyFields @deprecated( reason: "Use `companyFields`." )
14
15}