INPUT_OBJECT

UpdateUser

link GraphQL Schema definition

1input UpdateUser {
3
2id: ID!
5
4name: String
7
6jsondata: JSONData
9
8roleIds: [ID!]
11
10acls: [UserACLInput!]
14
12# Optionally, specify user's first name
13firstName: String
17
15# Optionally, specify user's last name
16lastName: String
20
18# Optionally, specify user's email
19email: String
23
21# Optionally, specify user's title
22title: String
26
24# Optionally, specify user's developerType
25developerType: String
29
27# Optionally, specify user's image
28imageUrl: String
35
30# Optionally, the user's roles will be updated for this organization. It should be
31# set if the requester is super-admin.
32# If it is not set when the requester is super-admin, the default organization of
33# user will be used.
34organizationId: ID
36}