OBJECT

UpdateUserPayload

The result of an updateUser mutation.

link GraphQL Schema definition

1type UpdateUserPayload {
2
3# The possible error returned.
4error: UpdateUserError
5
6# The modified user.
7user: User
8
9}