Schema Documentation

updateUser

Description

The payload for the updateUser mutation

Response

Returns an UpdateUserPayload

Arguments
NameDescription
input - UpdateUserInput! Input for the updateUser mutation

Example

Query
mutation updateUser($input: UpdateUserInput!){
  updateUser(input: $input){
    clientMutationIduser {
      ...UserFragment
    }
  }
}
Variables
{"input":UpdateUserInput}
Response
{"data":{"updateUser":{"clientMutationId":"abc123","user":User}}}