UpdateUserInput
Provides the fields and values to use when updating a user.
input UpdateUserInput {
id: ID!
firstName: String
lastName: String
position: String
}
Fields
UpdateUserInput.id ● ID! non-null scalar
Specifies the user to update.
UpdateUserInput.firstName ● String scalar
The user's first name.
UpdateUserInput.lastName ● String scalar
The user's last name.
UpdateUserInput.position ● String scalar
The user's position.
Member Of
updateUser mutation