INPUT_OBJECT

UpdateUserInput

The required input for a UpdateUser mutation.

link GraphQL Schema definition

1input UpdateUserInput {
4
2# If true the phone number associated with this user will be deleted.
3deletePhoneNumber: Boolean
7
5# The user's personal description.
6description: String
10
8# The user's display name.
9displayName: String
13
11# The user's personal email.
12email: String
17
14# Whether or not to send a mobile verification code if email verification is
15# required.
16includeVerificationCode: Boolean
20
18# User id of the user being updated.
19userID: ID!
21}